Hi deadballo,
There is actually an undocumented option that might help, at least for scaling the auto computed tick values.
vAxes: { 1: {
"formatOptions": {
"scaleFactor": 2.8
}
}}
You might need 1/2.8 instead. I'm also not sure of how it will combine with the '%' format.
Another option is to specify the tick values and formatted representations yourself.
vAxes: { 1: {
ticks: [ { v: 2.8, f: '100%'}, ... ]
}}
The tooltip values for your data won't be updated in the same way, however, so you would need to specify the formatted representation of each value in your DataTable.
Hope that helps.