score:17
Accepted answer
You can use v3.0 highcharts included series.update() method, which allows to change type of chart, dynamically.
chart.series[0].update({
type: "column"
});
score:0
Why didn't you include the loop that you linked to in the similar question?
$('#ChType').change(function(){
var series;
for ( i = 0 ; i < chart.series.length ; i++ ) {
if ( chart.series[i].name == 'MyData1' ) {
series = chart.series[i];
}
}
//var series = chart.series[0]
var newType = series.type == $('#ChType').val() ? $('#ChType').val()
Put that in place for each type - http://jsfiddle.net/waBck/5/
Source: stackoverflow.com
Related Query
- Changing Highcharts data series type dynamically
- Changing data dynamically for a series in Highcharts
- Changing data series type dynamically with Highcharts-angular
- Highcharts getjson and changing series type dynamically
- Changing series color in highcharts dynamically
- Changing data in HighCharts series causes y-axis to blow up
- Dynamically add data to series in Highcharts
- Setting Highcharts Series and Category data dynamically
- highcharts change series color when data is dynamically inserted
- Fixing/discounting a data series when changing chart-type in Highcharts
- highcharts - zoom issue after changing series data
- Inserting series data in highcharts dynamically
- Highcharts series visibility with csv data source
- How can I change data series dynamically in HighCharts without overwriting initial series?
- How to have multiple highcharts with different series data in vuejs without repeating code
- highcharts column : add dynamically series with drilldown data
- Assign colour to specific data in Highcharts depending on data type dynamically
- Series and categories data not changing dynamically
- Add series to highcharts dynamically without initial data
- Highcharts Pulling JSON data into series names dynamically
- Highcharts displays series names but missing data points from json source
- Dynamically changing Highcharts Theme through Jquery code not working
- Set Additional Data to highcharts series
- Proper way to remove all series data from a highcharts chart?
- Add additional data to a Highcharts series for use in formatters
- Get Highcharts Series Data after Load
- Highcharts doesn't display series with lots of data points
- How do I dynamically change a data point in Highcharts using JavaScript
- Highcharts data series issue with ajax/json and PHP
- Highcharts series data array
More Query from same tag
- react-highcharts: Cannot set property 'HighchartsAdapter' of undefined
- HighCharts: Resize markers of scatter chart dynamically
- Add URL to Pie-Donut Highchart
- unable to display json data on highcharts
- Highcharts how to remove headers from tooltip
- Display HTML table inside a DIV using Javascript switch statement
- Highcharts: how to dynamically set up max value of yAxis, based on the displayed data?
- How to change the background color of the Highcharts(HighMaps in specific) dynamically?
- javascript array object doesn't work with Hicharts when defined through jinja (Django 2.0)
- How to use jQuery when redrawing a chart?
- Highcharts data from google spreadsheet hide all series except one at start
- How to align two pie graphs (highcharts) next to each other
- Highcharts margins before and after data display?
- Highcharts - Enable border for 1 column/bar only?
- Printchart title in highcharts when clicking print button when chart title is null
- How to hide intermediate values of solid gauge chart of highcharts?
- Highcharts and Ajax using php
- Why doesn't HighCharts render when I pull it in with Ajax?
- Highcharts with coffeescript
- Highcharts undefined value
- Highcharts: Add plotlines to legend
- How to define name and value for x axis points in Highchart
- HighChart Pie Dynamic JSON in Codeigniter
- Highcharts : How can i move the tooltip to external DIV?
- issue on Adding Multi Text To Chart in Highcharts
- Highchart not rendering data from dynamically created array array
- Show only last 3 months data. other user can see on scrolling highcharts?
- building a custom histogram with highcharts.js
- Highcharts - Gantt Chart plot issue
- Highcharts - resize legend on chart resize?