I am working on highchart. I am trying to build a bar chart with a single entry against each category. Right now I am working on an example basic-bar. Below is the output Expected Output I want a single entry against each category. For example against April, I want only one bar not multiple and so on Here is …
Tag: highcharts
Old state is being shown despite updating in React Highcharts click event
I want the new state to show, but I get different behavior. I have three points (look at code below or sketch) and if I click a point, then whatever state value is at that time, in future clicks the old value is shown. I am not sure what this is being caused by. For example: Click point A, then
Highcharts Display Xaxis plot line
How can I enable only the left most Highcharts XAxis plot line on DateTime Line chart. I suppose there should be a default option to display XAxis line without needing to know the minimum/start value My progress so far -> https://jsfiddle.net/Lpjb9wc7/ }); Answer You need to change the dafault value of the…
Highcarts, removes html on categories
So I have this issue where i pass in categories with html, but if I send in the only thing that comes out is Does anyone know why this happens? Here is the code for the highchart. This has worked before and I haven’t changed anything that I can remember. These are all the details I have to post. How
Multiple links in credtis, Highcharts
Is it possible to use more than 1 link as credtis? Since I couldn’t find anything in API or any other forum my approach would be to try to use a single text and single href and by some kind of parser break it into multiple links. Any ideas?? Answer Use the SVGRenderer tool to render a custom text with
Highcharts X axis date bold
I am trying to make the date bold and red color in my highcharts x axis where time is also present in 12 hour format. I have done the following code but it is making all of the elements in x axis as bold as my time is in 12 hour format. How do I achieve this ? Answer Try
Highcharts 3D funnel Array format
I’m following the instructions of feeding the funnel with array data, supposedly in the documentation, it should be: this is how I get the array: my array data is: Is there a type of conversion am missing? Answer It looks like you just need to map() the returned Data to the appropriate format (here usin…
Highcharts pass external variable to global options
First time working with highcharts-vue. I have the following global chart options, which I import in my app.js. It is here I have added a button to the exporting menu to allow for download CSV / XLSX functionality, leveraging maatwebsite/laravel-excel, as the final export will include additional columns to sh…
Highchart not adding new series or removing old series
I am using Angular to show a basic column chart. The idea is to show how many data entries was created by different nodes (This will be received from a web server, but I have removed that code for simplicity for now) I start with showing two basic columns. Then on a button press I change the series so that
Dynamic colors and y-Axis descriptions in Highcharts
In a diagram I want to visualize the availability of Data depending on the user input. For that I want to use Highcharts and figured out that the “xrange”-diagram type would fit my needs the best. the representation of the data itself works fine but I have two problems: Color of the bar: all bars …