@ -1001,14 +1002,14 @@ c3_axis_fn.redraw = function redraw(transitions, isHidden) {
transitions.axisSubX.call($$.subXAxis);
};
varc3$1={version:"0.4.18"};
varc3={version:"0.4.19"};
varc3_chart_fn;
varc3_chart_internal_fn;
functionComponent(owner,componentKey,fn){
this.owner=owner;
c3$1.chart.internal[componentKey]=fn;
c3.chart.internal[componentKey]=fn;
}
functionChart(config){
@ -1040,18 +1041,18 @@ function ChartInternal(api) {
$$.axes={};
}
c3$1.generate=function(config){
c3.generate=function(config){
returnnewChart(config);
};
c3$1.chart={
c3.chart={
fn:Chart.prototype,
internal:{
fn:ChartInternal.prototype
}
};
c3_chart_fn=c3$1.chart.fn;
c3_chart_internal_fn=c3$1.chart.internal.fn;
c3_chart_fn=c3.chart.fn;
c3_chart_internal_fn=c3.chart.internal.fn;
c3_chart_internal_fn.beforeInit=function(){
// can do something
@ -1287,8 +1288,8 @@ c3_chart_internal_fn.initWithData = function (data) {
/*-- Main Region --*/
// text when empty
main.append("text").attr("class",CLASS.text+' '+CLASS.empty).attr("text-anchor","middle"// horizontal centering of text at x position in all browsers.
).attr("dominant-baseline","middle");// vertical centering of text at y position in all browsers, except IE.
main.append("text").attr("class",CLASS.text+' '+CLASS.empty).attr("text-anchor","middle")// horizontal centering of text at x position in all browsers.
.attr("dominant-baseline","middle");// vertical centering of text at y position in all browsers, except IE.
// Regions
$$.initRegion();
@ -2165,8 +2166,6 @@ if (!Function.prototype.bind) {
// changes which were implemented in Firefox 43 and Chrome 46.