简体   繁体   中英

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% .

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

Fiddle

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM