Skip to content

Commit

Permalink
Merge pull request #148 from RENCI/no-dashed-chart-lines
Browse files Browse the repository at this point in the history
adjusting chart line colors and thickness
  • Loading branch information
lstillwe authored Aug 7, 2024
2 parents 18015bd + eecd58f commit e23ff3b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/dialog/observation-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ function CreateObsChart(url) {
<Tooltip />
<Legend align="right" />

<Line type="monotone" dataKey="Observations" stroke="black" strokeWidth={2} dot={false} isAnimationActive={false} />
<Line type="monotone" dataKey="NOAA Tidal Predictions" stroke="teal" strokeWidth={2} dot={false} isAnimationActive={false} />
<Line type="monotone" dataKey="APS Nowcast" stroke="CornflowerBlue" strokeWidth={2} dot={false} isAnimationActive={false} />
<Line type="monotone" dataKey="APS Forecast" stroke="LimeGreen" strokeWidth={2} dot={false} isAnimationActive={false} />
<Line type="monotone" dataKey="Difference (APS-OBS)" stroke="red" strokeWidth={2} dot={false} isAnimationActive={false} />
<Line type="monotone" dataKey="Observations" stroke="black" strokeWidth={1} dot={false} isAnimationActive={false}/>
<Line type="monotone" dataKey="NOAA Tidal Predictions" stroke="DarkSeaGreen" strokeWidth={1} dot={false} isAnimationActive={false}/>
<Line type="monotone" dataKey="APS Nowcast" stroke="CornflowerBlue" strokeWidth={2} dot={false} isAnimationActive={false}/>
<Line type="monotone" dataKey="APS Forecast" stroke="teal" strokeWidth={2} dot={false} isAnimationActive={false}/>
<Line type="monotone" dataKey="Difference (APS-OBS)" stroke="darkred" strokeWidth={1} dot={false} isAnimationActive={false}/>
</LineChart>
}
</ResponsiveContainer>
Expand Down

0 comments on commit e23ff3b

Please sign in to comment.