testing histogram series.

This commit is contained in:
Will Charczuk 2016-07-28 16:36:30 -07:00
parent d088213b1e
commit bff8e074fd
9 changed files with 203 additions and 18 deletions

View file

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