Commit 381dd784 authored by Dmitry's avatar Dmitry

Update c3.js and c3.min.js

parent 28e56833
...@@ -5039,13 +5039,13 @@ ...@@ -5039,13 +5039,13 @@
}; };
c3_chart_internal_fn.findMinMax = function () { c3_chart_internal_fn.findMinMax = function () {
var $$ = this, data = $$.data.targets; var $$ = this;
var minY, maxY, minX, maxX; var minY, maxY, minX, maxX;
var i,j, id; var i,j, id;
var stacked; var stacked;
// detect if we have stacked group // detect if we have stacked group
if ($$.ed3Config.stacked) { if ($$.ed3Config.stacked !== undefined) {
stacked = true; stacked = true;
} else { } else {
stacked = false; stacked = false;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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