I need to implement such simple chart using JS https://i.stack.imgur.com/6gusX.png
I reviewed highcharts.js lib, but I couldn’t find ready solution or sinilar chart.
If someone know tool that can help to implement it, please help.
I need to implement such simple chart using JS https://i.stack.imgur.com/6gusX.png I reviewed highcharts.js lib,
Share
It can be done using Highcharts.
To format the markers use the following code.
demo
reference
Then to add the point value inside the marker.
I’ll use the previous code, as example.
By default,
dataLabelsare disabled, so you have toenableand then set it’syposition.I changed the radius value because it’s too small to put a number inside, you can use
formatterto format it’s number.demo
Then you have to style xAxys labels.
And here is the result.
Of course it’s not perfect. But it can be, I was just trying to show you that’s it’s possible to do it using Highcharts and you have a lot of options and a good reference that can help you.