score:2
Accepted answer
Configure all but the first series to have visible: false
:
$('#container').highcharts({
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2],
visible: false
}]
});
Example here.
Source: stackoverflow.com
Related Articles
- How to disable label from Highchart
- Why does my Highchart look different when I transfer my code from Jsfiddle to my server?
- How to draw line from Data label to Marker in Highchart Scatter Plot
- Generate highchart instance on floating div from mouseOver on axis label or from series point
- How to render Gantt Highchart from data source
- How to disable legend click to stop pie slice from disappearing in Highcharts?
- How to display highchart series line marker symbol from tooltip formatter?
- Highchart - change color of one x-axis label only
- Displaying Persian dates in highchart from its corresponding Georgian date
- How to disable range selector from highstocks charts
- Disable Print Chart option only from HighCharts
- Remove Zero From the HIGHCHART
- Disable marker hover in only one marker of highchart
- Can color of data label be different inside and outside of the bar in Highchart
- Series markers disable on lines and enable on legend in Highchart
- Highchart yAxis plotLines label position
- How to dynamically change axis from linear to logarithmic in HighChart
- How can I generate a real-time highchart from my database data?
- last label in x axis with datetime format not coming in highchart
- Last label is not showing in stepped labels of highchart
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts: How to provide a custom stack label in highcharts bar graph from within the stackLabel formatter?
- How can I prevent my HighChart bar chart from being inverted?
- How to hide highChart plotLine label until mouseover?
- Remove Image/Symbol from Highchart Graph
- How to update Highchart from inside react a component?
- highchart position label on xAxis value
- How to set series-label to false by default and change the color of series label text in highchart
- Highchart does not load data from hidden input when using .val
- Highchart how to animate from the xaxis bottom line upward
- highstock chart when loading via ajax has jerky behavior
- Highcharts funnel graph constructor
- Fill area beneath scatter points with color in Highcharts 3d scatter plot
- append point in the middle of graph
- how to always show markers in zoomable datetime charts in highcharts?
- Size of graph in highcharts
- Highcharts drilldown doesn't work for 3+ levels
- Highchart - tooltip for legends
- Adding Date Labels to a HighCharts line graph
- Highcharts: Tooltip delay before display
- highcharts: internet explorer ignores width of my div container
- Highcharts- Tooltip HTML max width
- Single column HighCharts for an array
- defining highcharts in body
- How to show text as a series on a chart in Javascript?
- Adding tool-tip to an image rendered using Highcharts Renderer.image() api
- Highcharts Isomorphic rendering / web-workers
- How to space columns in HighCharts
- Passing string data as categories to Highcharts
- How to use drilldown upto level 3 with different charts on each level in highcharts?