Label format in percentage

Hi @Ulas,

Here is an example.
You can find it in the Apliqo Demo model, in the “Charts Advanced options” Dashboard

"chartOptions": {
    "chartsTooltipFormat": "%",
    "tooltip": {
      "shared": true
    },
    "plotOptions": {
      "series": {
        "dataLabels": {
          "format": "{point.percentage:,.2f}%",
          "enabled": true
        }
      }
    }
  }
1 Like