Update c3.js and c3.min.js

parent 623a3c5a
......@@ -7952,6 +7952,22 @@
};
}
};
c3_chart_fn.axisX = function (value){
var $$ = this.internal;
$$.config.axis_x_show = !!value;
$$.axes.x.style("visibility", $$.config.axis_x_show ? 'visible' : 'hidden');
$$.redraw();
};
c3_chart_fn.axisY = function (value){
var $$ = this.internal;
$$.config.axis_y_show = !!value;
$$.axes.y.style("visibility", $$.config.axis_y_show ? 'visible' : 'hidden');
$$.redraw();
};
c3_chart_fn.legend = function () {};
c3_chart_fn.legend.show = function (targetIds) {
......
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