Replies: 1 comment 4 replies
-
It would probably be possible to do this using a line chart and then supplying different images for the data points. The I think you'd need to set const image = new Image()
const dataset: ChartDataset<'line'> = {
pointStyle: (ctx: ScriptableContext<'line'>) => {
// Change return based on data in ctx
return image
}
} |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
Working on creating a Meteogram and wondering if something like this is possible to make in ChartJS.
Beta Was this translation helpful? Give feedback.
All reactions