Tengo un gráfico de cascada y necesito eliminar la Serie 1 que aparece en el gráfico. Ya pruebo: leyenda: {habilitado: falso}, y showInLegend: falso,
Pero sigue apareciendo.
chart: { type: 'waterfall' }, title: { text: '' }, exporting: { enabled: false }, credits: { enabled: false }, //colors: ['#DADBDF', '#ED4D5F','#ED4D5F','#ED4D5F','#ED4D5F','#ED4D5F','#D7EAFD','#D7EAFD','#D7EAFD' ], xAxis: { lineColor: '#FFFFFF', lineWidth: 0, gridLineColor: '#DADBDF', categories: [], }, yAxis: { lineColor: '#FFFFFF', lineWidth: 0, gridLineColor: '#DADBDF', plotBands: [{ color: '#000000', // Color value from: 0, // Start of the plot band to: 0 // End of the plot band }], title: { text: '' }, tickPositioner: function () { //set tick interval dynamically (scale) var positions = [], tick = Math.floor(this.dataMin), increment = Math.ceil((this.dataMax - this.dataMin) / 6); if (this.dataMax !== null && this.dataMin !== null) { for (tick; tick - increment <= this.dataMax; tick += increment) { positions.push(tick); } } return positions; } }, legend: { enabled: false }, plotOptions: { column: { dataLabels: { enabled: true, color: '#000000' }, colorByPoint: true, pointWidth: 150 }, series: { borderWidth: 0, dataLabels: { enabled: true, format: '{point.y}' }, turboThreshold: 0 } }, series: [{ data: [], showInLegend: false, zones: [{ value: 0, color: '#ED4D5F' }, { color: '#A9A9A9' }, { color: '#C48634' }, { color: '#696969' },{ color: '#D7EAFD' }], }],Parece que tiene habilitado un módulo de etiquetas de serie. Desactívelo en la configuración de su gráfico configurando series.label.enabled en false , o elimine la importación de este módulo de su archivo HTML.
plotOptions: { series: { label: { enabled: false } }}
Referencia de API: https://api.highcharts.com/highcharts/plotOptions.series.label