Power chart scaled value

I have a power chart and it’s data source is from a database and I would like to scale (translate) it before displaying it on the chart. Is it possible to translate (scale) the values like multiple by x etc.?

Scale it in your query.

For example:

SELECT value FROM table WHERE ID=?

scale to...

SELECT value*5 FROM table WHERE ID=?
1 Like