Commit 28e56833 authored by Dmitry's avatar Dmitry

Small fix in findMinMax

parent 8192c017
......@@ -585,13 +585,13 @@ c3_chart_internal_fn.getAxisData = function(min, max, isAbscissa) {
};
c3_chart_internal_fn.findMinMax = function () {
var $$ = this, data = $$.data.targets;
var $$ = this;
var minY, maxY, minX, maxX;
var i,j, id;
var stacked;
// detect if we have stacked group
if ($$.ed3Config.stacked) {
if ($$.ed3Config.stacked !== undefined) {
stacked = true;
} else {
stacked = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment