0

I would like to plot price data and include a size attribute to each point so each data point would be (time, price, size=100) for instance. The canvas should plot the price data as a line but when hovering the mouse over the plot, I would like to be able to see the size at that point. I've accomplished this using jfreecharts in Java but I'm looking for something in the javascript space like d3.js or similar that might be able to achieve this. Any recommendations on charting libraries to try?

bodihex
  • 69
  • 8

1 Answers1

0

d3 is great, and probably the most flexible out there, but can be complicated, depending on your level of javascript. I think the most popular and easy to use libraries are: Chartjs,
Google charts and ECharts

If you're a beginner, checkout something like Anychart playground

felbus
  • 2,639
  • 2
  • 24
  • 30