|
this.chartSettings = {
title: "Sales Analysis",
chartSeries: {
type: "StackingColumn",
marker: { dataLabel: { visible: true } }
}
} as ChartSettings; |
Hello,
thank you for providing that option. Is there a simple way of formatting the data labels? In my case table values such as 12.35% show as 0.123456789 in the Angular Pivot Chart.
Regards,
Fabian
|
this.chartSettings = {
chartSeries: {
type: 'StackingColumn',
marker: {
dataLabel: {
visible: true,
template: '<div>${point.y}%</div>',
},
},
},
} as ChartSettings;
|