Skip to main content

All Questions

Tagged with
0 votes
1 answer
18 views

Cant View Overlapping Data Labels in Highcharts Line Graph

I am working with some code that generates barcharts in highcharts and am specifically trying to get all data labels to show up even when points in a series are close or overlapping (depending on the ...
Marcus Mousavi's user avatar
0 votes
1 answer
30 views

Highcharts image export with HTML labels not working

JS Fiddle: https://jsfiddle.net/xtds1wLh/6/ This is just an example JS Fiddle Here I have specified: useHTML: true in xAxis labels and have also specified: allowHTML in exporting Render looks good but ...
Blank's user avatar
  • 3
1 vote
1 answer
374 views

Highcharts: How to compare two series with different xAxis intervals in the same line chart

I'm trying to compare two different date interval data in a single chart by using 'linkedTo' attribute (in order to vanish and show two lines in a single click of a legend since they are related) My ...
Tuana Çetinkaya's user avatar
0 votes
1 answer
1k views

Is it possible to create trading graph in react native (like in photo)?

Need help to create graph like in photo. Please suggest any third party library to build this king of graph.
Chetan Patil's user avatar
0 votes
0 answers
37 views

Graph is not plotting when i am passing date which i am converting to different timezone in highcharts?

I have a data set like this temperature,Timezone 45,2019-08-01 12:34:34 CEST+0200 90,2019-08-01 12:34:35 CEST+0200 25,2019-08-01 12:34:36 CEST+0200 3,2019-08-01 12:34:37 CEST+0200 98,2019-08-01 12:...
Fahad Subzwari's user avatar
0 votes
1 answer
280 views

Hightcharts line graph real-time data with no interval?

There are plenty of examples out there that shows how to render the chart in real-time, but they all use interval with 1 second. The issue is, I'm getting data less than milliseconds, in fact, less ...
user avatar
1 vote
1 answer
1k views

Highcharts: change graph when radio button selected

How can I make default radio button selected and chart visible. The change function is to switch between radio button and change the graph. Here is my code: HTML <script src="http://code....
Drozzy's user avatar
  • 71
3 votes
1 answer
531 views

How can I hide ALL series with the same ID with a button on highcharts? (line graph)

I have a simple highcharts line graph and I want to be able to hide (not remove) ALL series with the same id, with the click of a button. I was thinking on checking for the id as a condition if (...
Selda UX Unicorn's user avatar
0 votes
0 answers
438 views

Plot data in highcharts according to the timestamp of the data

I have a database that holds two columns. One is a 'count' field and another one is the 'timestamp' field of each count. I want to plot this data in the highcharts using a line graph. The x-axis of ...
Nikhil Tikoo's user avatar
0 votes
0 answers
560 views

Highchart chart based on timestamp under x-axis and close undr y-axis

I have created a chart with bar and line graph using highchart plugins. The chart is coming but the problem is that actually I need the y axis to be close and x-axis to be timestamp. But in my chart ...
Alex Man's user avatar
  • 4,836
22 votes
4 answers
23k views

How to display highchart series line marker symbol from tooltip formatter?

By default highcharts display the line marker symbol in the tooltip. $(function () { $('#container').highcharts({ xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', '...
Sas's user avatar
  • 281
0 votes
1 answer
3k views

DrillDown in multiple line graphs

I am trying to get several line charts in one container and allow drill down in each of the line graphs. But I am not even able to plot the different line graphs at level 0. The data of the second ...
Bhaskar's user avatar
  • 357
1 vote
1 answer
3k views

How to plot multiple lines in a single graph using HighChart with JSON

Here is my code for plotting multiple line in a single grpah but it doesn,t working <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %> &...
user2493093's user avatar
0 votes
2 answers
390 views

Highcharts line graph, filling xAxis from JSON

I'm trying to get a line graph from Highcharts. My JSON looks like [{"Monat":"April","d07geb":1.5},{"Monat":"June","d07geb":0.5},{"Monat":"March","d07geb":0.5},{"Monat":"May","d07geb":0.2}] Monat ...
user2476011's user avatar