Skip to content

Commit

Permalink
tech/remove-HAZI-and-DEVI-from-code (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
VRiveland authored Jan 9, 2025
1 parent a860081 commit ff0a6f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tracks/graph/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Example of a graph track options-object, adding a simple line plot. Different pl
data: async function getData(){...}, // function to be called for fetching track data
plots:[ // plots
{
id: 'HAZI', // plot id
id: 'AZI', // plot id
type: 'line', // type (line/area/dot/differential)
options: { // plot options
scale: 'linear', // plot scale
domain: [0, 360], // plot domain
color: 'blue', // color for line graph
data: d => d.HAZI.dataPoints, // accessor function to get data returned by track data function
data: d => d.AZI.dataPoints, // accessor function to get data returned by track data function
},
},
(...)
Expand Down

0 comments on commit ff0a6f2

Please sign in to comment.