Could you kindly review this demonstration and provide guidance on how I can display one Highcharts chart in two separate containers? I have attempted both:
renderTo: 'container',
renderTo: 'container2',
and
renderTo: 'container, container2',
within the
$(function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
renderTo: 'container2',
type: 'column',
plotBorderWidth: 1
},
yAxis: {
title: {
text: 'useHTML = true',
useHTML: true
}
},
series: [{
data: [23,45,12,89,123,12,5]}]
});
});
However, my attempts were unsuccessful!