Estoy teniendo un gran problema en los gráficos altos para tener varias series usando el desglose y también al hacer clic en el botón Atrás
Esta es la función js que estoy usando, donde puedo crear una serie múltiple mientras se profundiza, pero al regresar, los datos anteriores se están fusionando con los datos actuales
function hello() { var odata = [{ name: 'Jan', y: 50, drilldown: 'animals' }, { name: 'Feb', y: 52, drilldown: 'animals' } ]; $('#container').highcharts({ chart: { type: 'column', margin: 75, options3d: { enabled: true, alpha: 15, beta: 15, depth: 50, viewDistance: 25 } }, title: { text: 'Employee Leave status, 2013.' }, subtitle: { text: 'Click the columns to view more.' }, xAxis: { type: 'category' }, yAxis: { title: { text: 'Total Number' } }, legend: { enabled: false }, plotOptions: { series: { borderWidth: 0, dataLabels: { enabled: true, format: '{point.y}' } } }, tooltip: { headerFormat: '{series.name}
', pointFormat: '{point.name}: {point.y} Number of days
' }, series: [{ name: 'UN Over-All for year', colorByPoint: true, data: odata }, { name: 'Pl Over-All for year', colorByPoint: true, data: odata }], drilldown: { series: [{ id: 'animals', name: 'Animals', data: [{ name: 'Cats', y: 4, drilldown: 'cats' }, ['Dogs', 2], ['Cows', 1], ['Sheep', 2], ['Pigs', 1] ] },{ id: 'cats', data: [1, 2, 3] }] } }) }
Necesito tener varias series en cada desglose y también tengo múltiples desglose
Aquí está el violín.
http://jsfiddle.net/mohamedmusthafac/x5E2Y/1/
Simplemente haga clic en jan-> luego en una barra-> luego haga clic en atrás-> luego haga clic en otra barra del mismo par-> Error (Serie colisionando)
Este problema ya se ha solucionado en Highcharts v4.1.4 .