basics of stacked bar.

This commit is contained in:
Will Charczuk 2016-07-28 18:51:55 -07:00
parent 020ec8f4a4
commit a1fb284797
8 changed files with 272 additions and 25 deletions

View file

@ -32,7 +32,7 @@ func (vs Values) Normalize() []Value {
output[index] = Value{
Style: v.Style,
Label: v.Label,
Value: RoundDown(v.Value/total, 0.001),
Value: RoundDown(v.Value/total, 0.00001),
}
}
return output