Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

133
Vistas
Highchart remove Series 1 from chart

I have a waterfall chart and I need to remove the Series 1 that appears on chart. I already try: legend: { enabled: false }, and showInLegend: false,

But still apears.

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'
  }],
}],

enter image description here

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

It seems, that you have a series-label module enabled. Disable it in your chart config by setting series.label.enabled to false, or remove this module import from your HTML file.

plotOptions: {
  series: {
    label: {
      enabled: false
  }
}

}


API Reference: https://api.highcharts.com/highcharts/plotOptions.series.label

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda