Skip to content
Advertisement

Tag: highcharts

Creating bell curve chart with xData in Highchart

I’m creating a chart with Highchart library and I have a set of data like this: [x,y], with x: value and y: occurrence. I tried to use this to present normal distribution line but it uses yData to calculate instead of xData. Does anyone have any ideas to solve this? jsfiddle link: https://jsfiddle.net/Lvehqmaz/1/ Answer You can add a mocked series

Need some help in creating this graph using Angular libraries

enter code hereChartenter image description here Need some help in creating this graph using Angular libraries. I’m using Angular HighCharts but not able to create the graph Visit https://jsfiddle.net/6Lbvrwmf/2/ Answer Your example is not a standard one and will need some workarounds. I’m not sure what Vehicle count represents and what is the relation betwen them and Average CC Days.

How to export highcharts graph and send it by email?

I’m ussing highcharts in my project and I’m abit new in that. My problem is that how to get a capture of my chart and then send it by email? for email sending I’m ussing PHPMailer, the email works correctly. I searched in highcharts documentation they propose node export-server, but there is no example. I got some hints from internet

Change Year-month to Month(letter)-year format in JavaScript

I have a dataset with date format as var dataset = [{ “monthDate”: “2018-05”, “count”: 83 }, { “monthDate”: “2018-06”, “count”: 23 },…..] I wish to change this to ‘May-18’, ‘June-18’ and so on and pass this data to Highchart Categories. How do I do that? Answer You could parse the date into a Date object, and then format it

Highmaps js, on Hover display additional data

I’m working with the map of Paraguay. I added an input select to select different years and the maps changes according to my selection. The thing is, my data always comes in this format: With the help of this function I’m able to switch the values for the map according to selection and change the array to a format that

How to add text on every section edges in funnel highcharts

With help of my previous question, I’m able to set equal heights for all the sections to the funnel. How can I add some extra texts to the edges(right) of every section. I did not find any documentation for this. My expected funnel chart as follows: jsfiddle Example: https://jsfiddle.net/kiranuk/xhfbyj64/ Thanks for the help. Answer For adding extra text on the

Set equal height for funnel highcharts

I’m new to HighCharts. I have created a funnel with the below script jsfiddle: https://jsfiddle.net/kiranuk/bavLxzrp/ How can I set equal heights for all the sections?. Thanks for the help. Answer A height of a section is calculated based on data. If you want to have equal sections, you can provide mocked equal data and show the real data in a

Advertisement