Kondal
Kondal

Reputation: 2980

Display Percentage Values on Z-axis (highcharts) bubble chart

I want to show the displaying in percentage in z-axis

plotOptions: {
  bubble: {
    dataLabels: {
        enabled: true,
        x:30
    }
  }
}

I want my tada labels to be values of z axis with a % sign next to it. So if I have a data point [1, 10, 5], I would like the data label to be 5%.

Upvotes: 0

Views: 240

Answers (1)

Deep 3015
Deep 3015

Reputation: 10075

I think you want to display z value of data as percentage

Fiddle

plotOptions: {
    bubble: {
        dataLabels: {
            enabled: true,
            x:30,
            format: "{point.z}%"
        },
    }
},

Upvotes: 1

Related Questions