Had to check if max was zero in using the graph on a stacked bar that could be empty for my implementation... in version 1.1 ``` javascript line 157: fieldHeight = max == 0 ? 0 : (totalHeightBar * value) / max; ```