Is it possible to format number precision in column graphs using integrated graphic dialog functions? I want to show the average number but with zero or 1.0 precision.
I tried to configure the precision of the data via transformation :
In this case I also using the JSON confing:
{
legend: {
color: {
itemLabelFontSize: 20,
layout: ‘grid’,
},
},
axis: {
x: {
labelFontSize: 20,
},
y: {
labelFontSize: 20,
},
},
scale: {
color: {
palette: ‘dark2’,
},
},
label: {
position: ‘inside’,
fontSize: 15,
},
}
The transformation does not help, as I describe in the topic. When the data transformation is made, the format of the column description remains the same.
e.g. data input looks like 40.1254485 beacouse it is average after transformation to precision 1 the output data after transformation looks like 40 but if I tried to insert “same data” into column description the transformation were lost and the result is still 40.1254485.