Replies: 1 comment 2 replies
-
That is a nice chart. Looking at the scales a scatter chart might be better. Primarily because a line chart only works with 1 data point and displays the labels on the x scale. With a scatter chart you can apply the [x, y] coordinates which is what you need to draw the line. In Chart.js the scatter chart has the option to 'showLine's. To get this done you will need a plugin / custom solution. Just a question regarding to the 3-wood green lines. Do you need to all 3 to lighten up onhover? Or only the ones that would intersect onhover? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm learning
Chart.js
and implementing serveral unique types of charts. I also found some workarounds in that discussion, which finally allowed me to implement a chart with a mix ofbubble
andbar
.This time, I'm trying to draw this type of chart, but is it actually possible to implement it with
Chart.js
?I want to draw a chart that expresses multiple trajectories
Arc
through multiple coordinate values ofX
andY
. I checked something similar inD3.js
, but I want to know if it is possible enough inChart.js
.Wouldn't be implemented as a
Scatter
orLine
chart? I'm thinking that.How about this?
Beta Was this translation helpful? Give feedback.
All reactions