There is no way to do this in the API.
Hello Everyone,
From the documentation I found that one can use vAxis:{ format: '...' } to format numbers that are displayed on vAxis as text.
However, I need to perform calculation (
ICU pattern set doesn't cut it - tell me if I'm wrong). In my case - convert seconds (
Integer), to HOURS:MINUTES:SECONDS.
I have a custom formatter that does that to format columns in google.visualization.DataTable and the formatted Integers are displayed in toolTip correctly.
Is there a way to apply custom formatter for vAxis? I tried `vAxis:{ format: new elapseTimeFormatter() }` - it didn't work.
If not, what would be an alternative/workaround to achieve the formatting describes above.
Thank you.