(function (window) { 'use strict'; /*global define, module, exports, require */ var c3 = { version: "0.3.0" }; var c3_chart_fn, c3_chart_internal_fn; function Chart(config) { var $$ = this.internal = new ChartInternal(this); $$.loadConfig(config); $$.init(); // bind "this" to nested API (function bindThis(fn, target, argThis) { for (var key in fn) { target[key] = fn[key].bind(argThis); if (Object.keys(fn[key]).length > 0) { bindThis(fn[key], target[key], argThis); } } })(c3_chart_fn, this, this); } function ChartInternal(api) { var $$ = this; $$.d3 = window.d3 ? window.d3 : typeof require !== 'undefined' ? require("d3") : undefined; $$.api = api; $$.config = $$.getDefaultConfig(); $$.data = {}; $$.cache = {}; $$.axes = {}; } c3.generate = function (config) { return new Chart(config); }; c3.chart = { fn: Chart.prototype, internal: { fn: ChartInternal.prototype } }; c3_chart_fn = c3.chart.fn; c3_chart_internal_fn = c3.chart.internal.fn; c3_chart_internal_fn.init = function () { var $$ = this, config = $$.config; $$.initParams(); if (config[__data_url]) { $$.convertUrlToData(config[__data_url], config[__data_mimeType], config[__data_keys], $$.initWithData); } else if (config[__data_json]) { $$.initWithData($$.convertJsonToData(config[__data_json], config[__data_keys])); } else if (config[__data_rows]) { $$.initWithData($$.convertRowsToData(config[__data_rows])); } else if (config[__data_columns]) { $$.initWithData($$.convertColumnsToData(config[__data_columns])); } else { throw Error('url or json or rows or columns is required.'); } }; c3_chart_internal_fn.initParams = function () { var $$ = this, d3 = $$.d3, config = $$.config; // MEMO: clipId needs to be unique because it conflicts when multiple charts exist $$.clipId = "c3-" + (+new Date()) + '-clip', $$.clipIdForXAxis = $$.clipId + '-xaxis', $$.clipIdForYAxis = $$.clipId + '-yaxis', $$.clipPath = $$.getClipPath($$.clipId), $$.clipPathForXAxis = $$.getClipPath($$.clipIdForXAxis), $$.clipPathForYAxis = $$.getClipPath($$.clipIdForYAxis); $$.dragStart = null; $$.dragging = false; $$.cancelClick = false; $$.mouseover = false; $$.transiting = false; $$.color = $$.generateColor(); $$.levelColor = $$.generateLevelColor(); $$.dataTimeFormat = config[__data_xLocaltime] ? d3.time.format : d3.time.format.utc; $$.axisTimeFormat = config[__axis_x_localtime] ? d3.time.format : d3.time.format.utc; $$.defaultAxisTimeFormat = $$.axisTimeFormat.multi([ [".%L", function (d) { return d.getMilliseconds(); }], [":%S", function (d) { return d.getSeconds(); }], ["%I:%M", function (d) { return d.getMinutes(); }], ["%I %p", function (d) { return d.getHours(); }], ["%-m/%-d", function (d) { return d.getDay() && d.getDate() !== 1; }], ["%-m/%-d", function (d) { return d.getDate() !== 1; }], ["%-m/%-d", function (d) { return d.getMonth(); }], ["%Y/%-m/%-d", function () { return true; }] ]); $$.hiddenTargetIds = []; $$.hiddenLegendIds = []; $$.xOrient = config[__axis_rotated] ? "left" : "bottom"; $$.yOrient = config[__axis_rotated] ? "bottom" : "left"; $$.y2Orient = config[__axis_rotated] ? "top" : "right"; $$.subXOrient = config[__axis_rotated] ? "left" : "bottom"; $$.isLegendRight = config[__legend_position] === 'right'; $$.isLegendInset = config[__legend_position] === 'inset'; $$.isLegendTop = config[__legend_inset_anchor] === 'top-left' || config[__legend_inset_anchor] === 'top-right'; $$.isLegendLeft = config[__legend_inset_anchor] === 'top-left' || config[__legend_inset_anchor] === 'bottom-left'; $$.legendStep = 0; $$.legendItemWidth = 0; $$.legendItemHeight = 0; $$.legendOpacityForHidden = 0.15; $$.currentMaxTickWidth = 0; $$.rotated_padding_left = 30; $$.rotated_padding_right = config[__axis_rotated] && !config[__axis_x_show] ? 0 : 30; $$.rotated_padding_top = 5; $$.withoutFadeIn = {}; $$.axes.subx = d3.selectAll([]); // needs when excluding subchart.js }; c3_chart_internal_fn.initWithData = function (data) { var $$ = this, d3 = $$.d3, config = $$.config; var main, binding = true; if ($$.initPie) { $$.initPie(); } if ($$.initBrush) { $$.initBrush(); } if ($$.initZoom) { $$.initZoom(); } $$.selectChart = d3.select(config[__bindto]); if ($$.selectChart.empty()) { $$.selectChart = d3.select(document.createElement('div')).style('opacity', 0); $$.observeInserted($$.selectChart); binding = false; } $$.selectChart.html("").classed("c3", true); // Init data as targets $$.data.xs = {}; $$.data.targets = $$.convertDataToTargets(data); if (config[__data_filter]) { $$.data.targets = $$.data.targets.filter(config[__data_filter]); } // Set targets to hide if needed if (config[__data_hide]) { $$.addHiddenTargetIds(config[__data_hide] === true ? $$.mapToIds($$.data.targets) : config[__data_hide]); } // when gauge, hide legend // TODO: fix if ($$.hasType('gauge')) { config[__legend_show] = false; } // Init sizes and scales $$.updateSizes(); $$.updateScales(); // Set domains for each scale $$.x.domain(d3.extent($$.getXDomain($$.data.targets))); $$.y.domain($$.getYDomain($$.data.targets, 'y')); $$.y2.domain($$.getYDomain($$.data.targets, 'y2')); $$.subX.domain($$.x.domain()); $$.subY.domain($$.y.domain()); $$.subY2.domain($$.y2.domain()); // Save original x domain for zoom update $$.orgXDomain = $$.x.domain(); // Set initialized scales to brush and zoom if ($$.brush) { $$.brush.scale($$.subX); } if (config[__zoom_enabled]) { $$.zoom.scale($$.x); } /*-- Basic Elements --*/ // Define svgs $$.svg = $$.selectChart.append("svg") .style("overflow", "hidden") .on('mouseenter', function () { return config[__onmouseover].call($$); }) .on('mouseleave', function () { return config[__onmouseout].call($$); }); // Define defs $$.defs = $$.svg.append("defs"); $$.defs.append("clipPath").attr("id", $$.clipId).append("rect"); $$.defs.append("clipPath").attr("id", $$.clipIdForXAxis).append("rect"); $$.defs.append("clipPath").attr("id", $$.clipIdForYAxis).append("rect"); $$.updateSvgSize(); // Define regions main = $$.main = $$.svg.append("g").attr("transform", $$.getTranslate('main')); if ($$.initSubchart) { $$.initSubchart(); } if ($$.initTooltip) { $$.initTooltip(); } if ($$.initLegend) { $$.initLegend(); } /*-- 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. // Regions $$.initRegion(); // Grids $$.initGrid(); // Define g for chart area main.append('g') .attr("clip-path", $$.clipPath) .attr('class', CLASS[_chart]); // Cover whole with rects for events $$.initEventRect(); // Define g for bar chart area if ($$.initBar) { $$.initBar(); } // Define g for line chart area if ($$.initLine) { $$.initLine(); } // Define g for arc chart area if ($$.initArc) { $$.initArc(); } if ($$.initGauge) { $$.initGauge(); } // Define g for text area if ($$.initText) { $$.initText(); } // if zoom privileged, insert rect to forefront // TODO: is this needed? main.insert('rect', config[__zoom_privileged] ? null : 'g.' + CLASS[_regions]) .attr('class', CLASS[_zoomRect]) .attr('width', $$.width) .attr('height', $$.height) .style('opacity', 0) .on("dblclick.zoom", null); // Set default extent if defined if (config[__axis_x_default]) { $$.brush.extent(isFunction(config[__axis_x_default]) ? config[__axis_x_default]($$.getXDomain()) : config[__axis_x_default]); } // Add Axis $$.initAxis(); // Set targets $$.updateTargets($$.data.targets); // Draw with targets if (binding) { $$.updateDimension(); $$.redraw({ withTransform: true, withUpdateXDomain: true, withUpdateOrgXDomain: true, withTransitionForAxis: false }); } // Bind resize event if (window.onresize == null) { window.onresize = $$.generateResize(); } if (window.onresize.add) { window.onresize.add(function () { config[__onresize].call($$); }); window.onresize.add(function () { $$.api.flush(); }); window.onresize.add(function () { config[__onresized].call($$); }); } // export element of the chart $$.api.element = $$.selectChart.node(); }; c3_chart_internal_fn.smoothLines = function (el, type) { var $$ = this; if (type === 'grid') { el.each(function () { var g = $$.d3.select(this), x1 = g.attr('x1'), x2 = g.attr('x2'), y1 = g.attr('y1'), y2 = g.attr('y2'); g.attr({ 'x1': Math.ceil(x1), 'x2': Math.ceil(x2), 'y1': Math.ceil(y1), 'y2': Math.ceil(y2) }); }); } }; c3_chart_internal_fn.updateSizes = function () { var $$ = this, config = $$.config; var legendHeight = $$.legend ? $$.getLegendHeight() : 0, legendWidth = $$.legend ? $$.getLegendWidth() : 0, legendHeightForBottom = $$.isLegendRight || $$.isLegendInset ? 0 : legendHeight, hasArc = $$.hasArcType(), xAxisHeight = config[__axis_rotated] || hasArc ? 0 : $$.getHorizontalAxisHeight('x'), subchartHeight = config[__subchart_show] && !hasArc ? (config[__subchart_size_height] + xAxisHeight) : 0; $$.currentWidth = $$.getCurrentWidth(); $$.currentHeight = $$.getCurrentHeight(); // for main $$.margin = config[__axis_rotated] ? { top: $$.getHorizontalAxisHeight('y2') + $$.getCurrentPaddingTop(), right: hasArc ? 0 : $$.getCurrentPaddingRight(), bottom: $$.getHorizontalAxisHeight('y') + legendHeightForBottom + $$.getCurrentPaddingBottom(), left: subchartHeight + (hasArc ? 0 : $$.getCurrentPaddingLeft()) } : { top: 4 + $$.getCurrentPaddingTop(), // for top tick text right: hasArc ? 0 : $$.getCurrentPaddingRight(), bottom: xAxisHeight + subchartHeight + legendHeightForBottom + $$.getCurrentPaddingBottom(), left: hasArc ? 0 : $$.getCurrentPaddingLeft() }; // for subchart $$.margin2 = config[__axis_rotated] ? { top: $$.margin.top, right: NaN, bottom: 20 + legendHeightForBottom, left: $$.rotated_padding_left } : { top: $$.currentHeight - subchartHeight - legendHeightForBottom, right: NaN, bottom: xAxisHeight + legendHeightForBottom, left: $$.margin.left }; // for legend $$.margin3 = { top: 0, right: NaN, bottom: 0, left: 0 }; if ($$.updateSizeForLegend) { $$.updateSizeForLegend(legendHeight, legendWidth); } $$.width = $$.currentWidth - $$.margin.left - $$.margin.right; $$.height = $$.currentHeight - $$.margin.top - $$.margin.bottom; if ($$.width < 0) { $$.width = 0; } if ($$.height < 0) { $$.height = 0; } $$.width2 = config[__axis_rotated] ? $$.margin.left - $$.rotated_padding_left - $$.rotated_padding_right : $$.width; $$.height2 = config[__axis_rotated] ? $$.height : $$.currentHeight - $$.margin2.top - $$.margin2.bottom; if ($$.width2 < 0) { $$.width2 = 0; } if ($$.height2 < 0) { $$.height2 = 0; } // for arc $$.arcWidth = $$.width - ($$.isLegendRight ? legendWidth + 10 : 0); $$.arcHeight = $$.height - ($$.isLegendRight ? 0 : 10); if ($$.updateRadius) { $$.updateRadius(); } if ($$.isLegendRight && hasArc) { $$.margin3.left = $$.arcWidth / 2 + $$.radiusExpanded * 1.1; } }; c3_chart_internal_fn.updateTargets = function (targets) { var $$ = this, config = $$.config; /*-- Main --*/ //-- Text --// $$.updateTargetsForText(targets); //-- Bar --// $$.updateTargetsForBar(targets); //-- Line --// $$.updateTargetsForLine(targets); //-- Arc --// if ($$.updateTargetsForArc) { $$.updateTargetsForArc(targets); } if ($$.updateTargetsForSubchart) { $$.updateTargetsForSubchart(targets); } /*-- Show --*/ // Fade-in each chart $$.svg.selectAll('.' + CLASS[_target]).filter(function (d) { return $$.isTargetToShow(d.id); }) .transition().duration(config[__transition_duration]) .style("opacity", 1); }; c3_chart_internal_fn.redraw = function (options, transitions) { var $$ = this, main = $$.main, d3 = $$.d3, config = $$.config; var areaIndices = $$.getShapeIndices($$.isAreaType), barIndices = $$.getShapeIndices($$.isBarType), lineIndices = $$.getShapeIndices($$.isLineType); var withY, withSubchart, withTransition, withTransitionForExit, withTransitionForAxis, withTransform, withUpdateXDomain, withUpdateOrgXDomain, withLegend; var hideAxis = $$.hasArcType(); var drawArea, drawBar, drawLine, xForText, yForText; var duration, durationForExit, durationForAxis; var waitForDraw, flow; var targetsToShow = $$.filterTargetsToShow($$.data.targets), tickValues, i, intervalForCulling; var xv = $$.xv.bind($$), cx = ($$.config[__axis_rotated] ? $$.circleY : $$.circleX).bind($$), cy = ($$.config[__axis_rotated] ? $$.circleX : $$.circleY).bind($$); options = options || {}; withY = getOption(options, "withY", true); withSubchart = getOption(options, "withSubchart", true); withTransition = getOption(options, "withTransition", true); withTransform = getOption(options, "withTransform", false); withUpdateXDomain = getOption(options, "withUpdateXDomain", false); withUpdateOrgXDomain = getOption(options, "withUpdateOrgXDomain", false); withLegend = getOption(options, "withLegend", false); withTransitionForExit = getOption(options, "withTransitionForExit", withTransition); withTransitionForAxis = getOption(options, "withTransitionForAxis", withTransition); duration = withTransition ? config[__transition_duration] : 0; durationForExit = withTransitionForExit ? duration : 0; durationForAxis = withTransitionForAxis ? duration : 0; transitions = transitions || $$.generateAxisTransitions(durationForAxis); // update legend and transform each g if (withLegend && config[__legend_show]) { $$.updateLegend($$.mapToIds($$.data.targets), options, transitions); } // MEMO: needed for grids calculation if ($$.isCategorized() && targetsToShow.length === 0) { $$.x.domain([0, $$.axes.x.selectAll('.tick').size()]); } if (targetsToShow.length) { $$.updateXDomain(targetsToShow, withUpdateXDomain, withUpdateOrgXDomain); // update axis tick values according to options if (!config[__axis_x_tick_values] && (config[__axis_x_tick_fit] || config[__axis_x_tick_count])) { tickValues = $$.generateTickValues($$.mapTargetsToUniqueXs(targetsToShow), config[__axis_x_tick_count]); $$.xAxis.tickValues(tickValues); $$.subXAxis.tickValues(tickValues); } } else { $$.xAxis.tickValues([]); $$.subXAxis.tickValues([]); } $$.y.domain($$.getYDomain(targetsToShow, 'y')); $$.y2.domain($$.getYDomain(targetsToShow, 'y2')); // axes $$.redrawAxis(transitions, hideAxis); // Update axis label $$.updateAxisLabels(withTransition); // show/hide if manual culling needed if (withUpdateXDomain && targetsToShow.length) { if (config[__axis_x_tick_culling] && tickValues) { for (i = 1; i < tickValues.length; i++) { if (tickValues.length / i < config[__axis_x_tick_culling_max]) { intervalForCulling = i; break; } } $$.svg.selectAll('.' + CLASS[_axisX] + ' .tick text').each(function (e) { var index = tickValues.indexOf(e); if (index >= 0) { d3.select(this).style('display', index % intervalForCulling ? 'none' : 'block'); } }); } else { $$.svg.selectAll('.' + CLASS[_axisX] + ' .tick text').style('display', 'block'); } } // rotate tick text if needed if (!config[__axis_rotated] && config[__axis_x_tick_rotate]) { $$.rotateTickText($$.axes.x, transitions.axisX, config[__axis_x_tick_rotate]); } // setup drawer - MEMO: these must be called after axis updated drawArea = $$.generateDrawArea ? $$.generateDrawArea(areaIndices, false) : undefined; drawBar = $$.generateDrawBar ? $$.generateDrawBar(barIndices) : undefined; drawLine = $$.generateDrawLine ? $$.generateDrawLine(lineIndices, false) : undefined; xForText = $$.generateXYForText(barIndices, true); yForText = $$.generateXYForText(barIndices, false); // Update sub domain $$.subY.domain($$.y.domain()); $$.subY2.domain($$.y2.domain()); // tooltip $$.tooltip.style("display", "none"); // xgrid focus $$.updateXgridFocus(); // Data empty label positioning and text. main.select("text." + CLASS[_text] + '.' + CLASS[_empty]) .attr("x", $$.width / 2) .attr("y", $$.height / 2) .text(config[__data_empty_label_text]) .transition() .style('opacity', targetsToShow.length ? 0 : 1); // grid $$.redrawGrid(duration, withY); // rect for regions $$.redrawRegion(duration); // bars $$.redrawBar(durationForExit); // lines, areas and cricles $$.redrawLine(durationForExit); $$.redrawArea(durationForExit); if (config[__point_show]) { $$.redrawCircle(); } // text if ($$.hasDataLabel()) { $$.redrawText(durationForExit); } // arc if ($$.redrawArc) { $$.redrawArc(duration, durationForExit, withTransform); } // subchart if ($$.redrawSubchart) { $$.redrawSubchart(withSubchart, transitions, duration, durationForExit, areaIndices, barIndices, lineIndices); } // circles for select main.selectAll('.' + CLASS[_selectedCircles]) .filter($$.isBarType.bind($$)) .selectAll('circle') .remove(); // event rect if (config[__interaction_enabled]) { $$.redrawEventRect(); } // transition should be derived from one transition d3.transition().duration(duration).each(function () { var transitions = []; $$.addTransitionForBar(transitions, drawBar); $$.addTransitionForLine(transitions, drawLine); $$.addTransitionForArea(transitions, drawArea); $$.addTransitionForCircle(transitions, cx, cy); $$.addTransitionForText(transitions, xForText, yForText, options.flow); $$.addTransitionForRegion(transitions); $$.addTransitionForGrid(transitions); // Wait for end of transitions if called from flow API if (options.flow) { waitForDraw = $$.generateWait(); transitions.forEach(function (t) { waitForDraw.add(t); }); flow = $$.generateFlow({ targets: targetsToShow, flow: options.flow, duration: duration, drawBar: drawBar, drawLine: drawLine, drawArea: drawArea, cx: cx, cy: cy, xv: xv, xForText: xForText, yForText: yForText }); } }) .call(waitForDraw || function () {}, flow || function () {}); // update fadein condition $$.mapToIds($$.data.targets).forEach(function (id) { $$.withoutFadeIn[id] = true; }); if ($$.updateZoom) { $$.updateZoom(); } }; c3_chart_internal_fn.updateAndRedraw = function (options) { var $$ = this, config = $$.config, transitions; options = options || {}; // same with redraw options.withTransition = getOption(options, "withTransition", true); options.withTransform = getOption(options, "withTransform", false); options.withLegend = getOption(options, "withLegend", false); // NOT same with redraw options.withUpdateXDomain = true; options.withUpdateOrgXDomain = true; options.withTransitionForExit = false; options.withTransitionForTransform = getOption(options, "withTransitionForTransform", options.withTransition); // MEMO: this needs to be called before updateLegend and it means this ALWAYS needs to be called) $$.updateSizes(); // MEMO: called in updateLegend in redraw if withLegend if (!(options.withLegend && config[__legend_show])) { transitions = $$.generateAxisTransitions(options.withTransitionForAxis ? config[__transition_duration] : 0); // Update scales $$.updateScales(); $$.updateSvgSize(); // Update g positions $$.transformAll(options.withTransitionForTransform, transitions); } // Draw with new sizes & scales $$.redraw(options, transitions); }; c3_chart_internal_fn.isTimeSeries = function () { return this.config[__axis_x_type] === 'timeseries'; }; c3_chart_internal_fn.isCategorized = function () { return this.config[__axis_x_type].indexOf('categor') >= 0; }; c3_chart_internal_fn.isCustomX = function () { var $$ = this, config = $$.config; return !$$.isTimeSeries() && (config[__data_x] || notEmpty(config[__data_xs])); }; c3_chart_internal_fn.getTranslate = function (target) { var $$ = this, config = $$.config, x, y; if (target === 'main') { x = asHalfPixel($$.margin.left); y = asHalfPixel($$.margin.top); } else if (target === 'context') { x = asHalfPixel($$.margin2.left); y = asHalfPixel($$.margin2.top); } else if (target === 'legend') { x = $$.margin3.left; y = $$.margin3.top; } else if (target === 'x') { x = 0; y = config[__axis_rotated] ? 0 : $$.height; } else if (target === 'y') { x = 0; y = config[__axis_rotated] ? $$.height : 0; } else if (target === 'y2') { x = config[__axis_rotated] ? 0 : $$.width; y = config[__axis_rotated] ? 1 : 0; } else if (target === 'subx') { x = 0; y = config[__axis_rotated] ? 0 : $$.height2; } else if (target === 'arc') { x = $$.arcWidth / 2; y = $$.arcHeight / 2; } return "translate(" + x + "," + y + ")"; }; c3_chart_internal_fn.initialOpacity = function (d) { return d.value !== null && this.withoutFadeIn[d.id] ? 1 : 0; }; c3_chart_internal_fn.opacityForCircle = function (d) { var $$ = this; return isValue(d.value) ? $$.isScatterType(d) ? 0.5 : 1 : 0; }; c3_chart_internal_fn.opacityForText = function () { return this.hasDataLabel() ? 1 : 0; }; c3_chart_internal_fn.xx = function (d) { return d ? this.x(d.x) : null; }; c3_chart_internal_fn.xv = function (d) { var $$ = this; return Math.ceil($$.x($$.isTimeSeries() ? $$.parseDate(d.value) : d.value)); }; c3_chart_internal_fn.yv = function (d) { var $$ = this, yScale = d.axis && d.axis === 'y2' ? $$.y2 : $$.y; return Math.ceil(yScale(d.value)); }; c3_chart_internal_fn.subxx = function (d) { return d ? this.subX(d.x) : null; }; c3_chart_internal_fn.transformMain = function (withTransition, transitions) { var $$ = this, xAxis, yAxis, y2Axis; if (transitions && transitions.axisX) { xAxis = transitions.axisX; } else { xAxis = $$.main.select('.' + CLASS[_axisX]); if (withTransition) { xAxis = xAxis.transition(); } } if (transitions && transitions.axisY) { yAxis = transitions.axisY; } else { yAxis = $$.main.select('.' + CLASS[_axisY]); if (withTransition) { yAxis = yAxis.transition(); } } if (transitions && transitions.axisY2) { y2Axis = transitions.axisY2; } else { y2Axis = $$.main.select('.' + CLASS[_axisY2]); if (withTransition) { y2Axis = y2Axis.transition(); } } (withTransition ? $$.main.transition() : $$.main).attr("transform", $$.getTranslate('main')); xAxis.attr("transform", $$.getTranslate('x')); yAxis.attr("transform", $$.getTranslate('y')); y2Axis.attr("transform", $$.getTranslate('y2')); $$.main.select('.' + CLASS[_chartArcs]).attr("transform", $$.getTranslate('arc')); }; c3_chart_internal_fn.transformAll = function (withTransition, transitions) { var $$ = this; $$.transformMain(withTransition, transitions); if ($$.config[__subchart_show]) { $$.transformContext(withTransition, transitions); } if ($$.legend) { $$.transformLegend(withTransition); } }; c3_chart_internal_fn.updateSvgSize = function () { var $$ = this; $$.svg.attr('width', $$.currentWidth).attr('height', $$.currentHeight); $$.svg.select('#' + $$.clipId).select('rect') .attr('width', $$.width) .attr('height', $$.height); $$.svg.select('#' + $$.clipIdForXAxis).select('rect') .attr('x', $$.getXAxisClipX.bind($$)) .attr('y', $$.getXAxisClipY.bind($$)) .attr('width', $$.getXAxisClipWidth.bind($$)) .attr('height', $$.getXAxisClipHeight.bind($$)); $$.svg.select('#' + $$.clipIdForYAxis).select('rect') .attr('x', $$.getYAxisClipX.bind($$)) .attr('y', $$.getYAxisClipY.bind($$)) .attr('width', $$.getYAxisClipWidth.bind($$)) .attr('height', $$.getYAxisClipHeight.bind($$)); $$.svg.select('.' + CLASS[_zoomRect]) .attr('width', $$.width) .attr('height', $$.height); // MEMO: parent div's height will be bigger than svg when $$.selectChart.style('max-height', $$.currentHeight + "px"); }; c3_chart_internal_fn.updateDimension = function () { var $$ = this; if ($$.config[__axis_rotated]) { $$.axes.x.call($$.xAxis); $$.axes.subx.call($$.subXAxis); } else { $$.axes.y.call($$.yAxis); $$.axes.y2.call($$.y2Axis); } $$.updateSizes(); $$.updateScales(); $$.updateSvgSize(); $$.transformAll(false); }; c3_chart_internal_fn.observeInserted = function (selection) { var $$ = this, observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { if (mutation.type === 'childList' && mutation.previousSibling) { observer.disconnect(); // need to wait for completion of load because size calculation requires the actual sizes determined after that completion var interval = window.setInterval(function () { // parentNode will NOT be null when completed if (selection.node().parentNode) { window.clearInterval(interval); $$.updateDimension(); $$.redraw({ withTransform: true, withUpdateXDomain: true, withUpdateOrgXDomain: true, withTransition: false, withTransitionForTransform: false, withLegend: true }); selection.transition().style('opacity', 1); } }, 10); } }); }); observer.observe(selection.node(), {attributes: true, childList: true, characterData: true}); }; c3_chart_internal_fn.generateResize = function () { var resizeFunctions = []; function callResizeFunctions() { resizeFunctions.forEach(function (f) { f(); }); } callResizeFunctions.add = function (f) { resizeFunctions.push(f); }; return callResizeFunctions; }; c3_chart_internal_fn.endall = function (transition, callback) { var n = 0; transition .each(function () { ++n; }) .each("end", function () { if (!--n) { callback.apply(this, arguments); } }); }; c3_chart_internal_fn.generateWait = function () { var transitionsToWait = [], f = function (transition, callback) { var timer = setInterval(function () { var done = 0; transitionsToWait.forEach(function (t) { if (t.empty()) { done += 1; return; } try { t.transition(); } catch (e) { done += 1; } }); if (done === transitionsToWait.length) { clearInterval(timer); if (callback) { callback(); } } }, 10); }; f.add = function (transition) { transitionsToWait.push(transition); }; return f; }; c3_chart_internal_fn.parseDate = function (date) { var $$ = this, parsedDate; if (date instanceof Date) { parsedDate = date; } else if (typeof date === 'number') { parsedDate = new Date(date); } else { parsedDate = $$.dataTimeFormat($$.config[__data_xFormat]).parse(date); } if (!parsedDate || isNaN(+parsedDate)) { window.console.error("Failed to parse x '" + date + "' to Date object"); } return parsedDate; }; var __bindto = 'bindto', __size_width = 'size_width', __size_height = 'size_height', __padding_left = 'padding_left', __padding_right = 'padding_right', __padding_top = 'padding_top', __padding_bottom = 'padding_bottom', __zoom_enabled = 'zoom_enabled', __zoom_extent = 'zoom_extent', __zoom_privileged = 'zoom_privileged', __zoom_onzoom = 'zoom_onzoom', __interaction_enabled = 'interaction_enabled', __onmouseover = 'onmouseover', __onmouseout = 'onmouseout', __onresize = 'onresize', __onresized = 'onresized', __transition_duration = 'transition_duration', __data_x = 'data_x', __data_xs = 'data_xs', __data_xFormat = 'data_xFormat', __data_xLocaltime = 'data_xLocaltime', __data_idConverter = 'data_idConverter', __data_names = 'data_names', __data_classes = 'data_classes', __data_groups = 'data_groups', __data_axes = 'data_axes', __data_type = 'data_type', __data_types = 'data_types', __data_labels = 'data_labels', __data_order = 'data_order', __data_regions = 'data_regions', __data_color = 'data_color', __data_colors = 'data_colors', __data_hide = 'data_hide', __data_filter = 'data_filter', __data_selection_enabled = 'data_selection_enabled', __data_selection_grouped = 'data_selection_grouped', __data_selection_isselectable = 'data_selection_isselectable', __data_selection_multiple = 'data_selection_multiple', __data_onclick = 'data_onclick', __data_onmouseover = 'data_onmouseover', __data_onmouseout = 'data_onmouseout', __data_onselected = 'data_onselected', __data_onunselected = 'data_onunselected', __data_ondragstart = 'data_ondragstart', __data_ondragend = 'data_ondragend', __data_url = 'data_url', __data_json = 'data_json', __data_rows = 'data_rows', __data_columns = 'data_columns', __data_mimeType = 'data_mimeType', __data_keys = 'data_keys', __data_empty_label_text = 'data_empty_label_text', __subchart_show = 'subchart_show', __subchart_size_height = 'subchart_size_height', __subchart_onbrush = 'subchart_onbrush', __color_pattern = 'color_pattern', __color_threshold = 'color_threshold', __legend_show = 'legend_show', __legend_position = 'legend_position', __legend_inset_anchor = 'legend_inset_anchor', __legend_inset_x = 'legend_inset_x', __legend_inset_y = 'legend_inset_y', __legend_inset_step = 'legend_inset_step', __legend_item_onclick = 'legend_item_onclick', __legend_item_onmouseover = 'legend_item_onmouseover', __legend_item_onmouseout = 'legend_item_onmouseout', __legend_equally = 'legend_equally', __axis_rotated = 'axis_rotated', __axis_x_show = 'axis_x_show', __axis_x_type = 'axis_x_type', __axis_x_localtime = 'axis_x_localtime', __axis_x_categories = 'axis_x_categories', __axis_x_tick_centered = 'axis_x_tick_centered', __axis_x_tick_format = 'axis_x_tick_format', __axis_x_tick_culling = 'axis_x_tick_culling', __axis_x_tick_culling_max = 'axis_x_tick_culling_max', __axis_x_tick_count = 'axis_x_tick_count', __axis_x_tick_fit = 'axis_x_tick_fit', __axis_x_tick_values = 'axis_x_tick_values', __axis_x_tick_rotate = 'axis_x_tick_rotate', __axis_x_tick_outer = 'axis_x_tick_outer', __axis_x_max = 'axis_x_max', __axis_x_min = 'axis_x_min', __axis_x_padding = 'axis_x_padding', __axis_x_height = 'axis_x_height', __axis_x_default = 'axis_x_default', __axis_x_label = 'axis_x_label', __axis_y_show = 'axis_y_show', __axis_y_max = 'axis_y_max', __axis_y_min = 'axis_y_min', __axis_y_center = 'axis_y_center', __axis_y_label = 'axis_y_label', __axis_y_tick_format = 'axis_y_tick_format', __axis_y_tick_outer = 'axis_y_tick_outer', __axis_y_padding = 'axis_y_padding', __axis_y_ticks = 'axis_y_ticks', __axis_y2_show = 'axis_y2_show', __axis_y2_max = 'axis_y2_max', __axis_y2_min = 'axis_y2_min', __axis_y2_center = 'axis_y2_center', __axis_y2_label = 'axis_y2_label', __axis_y2_tick_format = 'axis_y2_tick_format', __axis_y2_tick_outer = 'axis_y2_tick_outer', __axis_y2_padding = 'axis_y2_padding', __axis_y2_ticks = 'axis_y2_ticks', __grid_x_show = 'grid_x_show', __grid_x_type = 'grid_x_type', __grid_x_lines = 'grid_x_lines', __grid_y_show = 'grid_y_show', __grid_y_lines = 'grid_y_lines', __grid_y_ticks = 'grid_y_ticks', __grid_focus_show = 'grid_focus_show', __point_show = 'point_show', __point_r = 'point_r', __point_focus_expand_enabled = 'point_focus_expand_enabled', __point_focus_expand_r = 'point_focus_expand_r', __point_select_r = 'point_select_r', __line_connect_null = 'line_connect_null', __bar_width = 'bar_width', __bar_width_ratio = 'bar_width_ratio', __bar_width_max = 'bar_width_max', __bar_zerobased = 'bar_zerobased', __area_zerobased = 'area_zerobased', __pie_label_show = 'pie_label_show', __pie_label_format = 'pie_label_format', __pie_label_threshold = 'pie_label_threshold', __pie_sort = 'pie_sort', __pie_expand = 'pie_expand', __gauge_label_show = 'gauge_label_show', __gauge_label_format = 'gauge_label_format', __gauge_expand = 'gauge_expand', __gauge_min = 'gauge_min', __gauge_max = 'gauge_max', __gauge_units = 'gauge_units', __gauge_width = 'gauge_width', __donut_label_show = 'donut_label_show', __donut_label_format = 'donut_label_format', __donut_label_threshold = 'donut_label_threshold', __donut_width = 'donut_width', __donut_sort = 'donut_sort', __donut_expand = 'donut_expand', __donut_title = 'donut_title', __regions = 'regions', __tooltip_show = 'tooltip_show', __tooltip_grouped = 'tooltip_grouped', __tooltip_format_title = 'tooltip_format_title', __tooltip_format_name = 'tooltip_format_name', __tooltip_format_value = 'tooltip_format_value', __tooltip_contents = 'tooltip_contents', __tooltip_init_show = 'tooltip_init_show', __tooltip_init_x = 'tooltip_init_x', __tooltip_init_position = 'tooltip_init_position'; c3_chart_internal_fn.getDefaultConfig = function () { var config = {}; config[__bindto] = '#chart'; config[__size_width] = undefined; config[__size_height] = undefined; config[__padding_left] = undefined; config[__padding_right] = undefined; config[__padding_top] = undefined; config[__padding_bottom] = undefined; config[__zoom_enabled] = false; config[__zoom_extent] = undefined; config[__zoom_privileged] = false; config[__zoom_onzoom] = function () {}; config[__interaction_enabled] = true; config[__onmouseover] = function () {}; config[__onmouseout] = function () {}; config[__onresize] = function () {}; config[__onresized] = function () {}; config[__transition_duration] = 350; config[__data_x] = undefined; config[__data_xs] = {}; config[__data_xFormat] = '%Y-%m-%d'; config[__data_xLocaltime] = true; config[__data_idConverter] = function (id) { return id; }; config[__data_names] = {}; config[__data_classes] = {}; config[__data_groups] = []; config[__data_axes] = {}; config[__data_type] = undefined; config[__data_types] = {}; config[__data_labels] = {}; config[__data_order] = 'desc'; config[__data_regions] = {}; config[__data_color] = undefined; config[__data_colors] = {}; config[__data_hide] = false; config[__data_filter] = undefined; config[__data_selection_enabled] = false; config[__data_selection_grouped] = false; config[__data_selection_isselectable] = function () { return true; }; config[__data_selection_multiple] = true; config[__data_onclick] = function () {}; config[__data_onmouseover] = function () {}; config[__data_onmouseout] = function () {}; config[__data_onselected] = function () {}; config[__data_onunselected] = function () {}; config[__data_ondragstart] = function () {}; config[__data_ondragend] = function () {}; config[__data_url] = undefined; config[__data_json] = undefined; config[__data_rows] = undefined; config[__data_columns] = undefined; config[__data_mimeType] = undefined; config[__data_keys] = undefined; // configuration for no plot-able data supplied. config[__data_empty_label_text] = ""; // subchart config[__subchart_show] = false; config[__subchart_size_height] = 60; config[__subchart_onbrush] = function () {}; // color config[__color_pattern] = []; config[__color_threshold] = {}; // legend config[__legend_show] = true; config[__legend_position] = 'bottom'; config[__legend_inset_anchor] = 'top-left'; config[__legend_inset_x] = 10; config[__legend_inset_y] = 0; config[__legend_inset_step] = undefined; config[__legend_item_onclick] = undefined; config[__legend_item_onmouseover] = undefined; config[__legend_item_onmouseout] = undefined; config[__legend_equally] = false; // axis config[__axis_rotated] = false; config[__axis_x_show] = true; config[__axis_x_type] = 'indexed'; config[__axis_x_localtime] = true; config[__axis_x_categories] = []; config[__axis_x_tick_centered] = false; config[__axis_x_tick_format] = undefined; config[__axis_x_tick_culling] = {}; config[__axis_x_tick_culling_max] = 10; config[__axis_x_tick_count] = undefined; config[__axis_x_tick_fit] = true; config[__axis_x_tick_values] = null; config[__axis_x_tick_rotate] = undefined; config[__axis_x_tick_outer] = true; config[__axis_x_max] = null; config[__axis_x_min] = null; config[__axis_x_padding] = {}; config[__axis_x_height] = undefined; config[__axis_x_default] = undefined; config[__axis_x_label] = {}; config[__axis_y_show] = true; config[__axis_y_max] = undefined; config[__axis_y_min] = undefined; config[__axis_y_center] = undefined; config[__axis_y_label] = {}; config[__axis_y_tick_format] = undefined; config[__axis_y_tick_outer] = true; config[__axis_y_padding] = undefined; config[__axis_y_ticks] = 10; config[__axis_y2_show] = false; config[__axis_y2_max] = undefined; config[__axis_y2_min] = undefined; config[__axis_y2_center] = undefined; config[__axis_y2_label] = {}; config[__axis_y2_tick_format] = undefined; config[__axis_y2_tick_outer] = true; config[__axis_y2_padding] = undefined; config[__axis_y2_ticks] = 10; // grid config[__grid_x_show] = false; config[__grid_x_type] = 'tick'; config[__grid_x_lines] = []; config[__grid_y_show] = false; // not used // grid_y_type: {}, 'tick'), config[__grid_y_lines] = []; config[__grid_y_ticks] = 10; config[__grid_focus_show] = true; // point - point of each data config[__point_show] = true; config[__point_r] = 2.5; config[__point_focus_expand_enabled] = true; config[__point_focus_expand_r] = undefined; config[__point_select_r] = undefined; config[__line_connect_null] = false; // bar config[__bar_width] = undefined; config[__bar_width_ratio] = 0.6; config[__bar_width_max] = undefined; config[__bar_zerobased] = true; // area config[__area_zerobased] = true; // pie config[__pie_label_show] = true; config[__pie_label_format] = undefined; config[__pie_label_threshold] = 0.05; config[__pie_sort] = true; config[__pie_expand] = true; // gauge config[__gauge_label_show] = true; config[__gauge_label_format] = undefined; config[__gauge_expand] = true; config[__gauge_min] = 0; config[__gauge_max] = 100; config[__gauge_units] = undefined; config[__gauge_width] = undefined; // donut config[__donut_label_show] = true; config[__donut_label_format] = undefined; config[__donut_label_threshold] = 0.05; config[__donut_width] = undefined; config[__donut_sort] = true; config[__donut_expand] = true; config[__donut_title] = ""; // region - region to change style config[__regions] = []; // tooltip - show when mouseover on each data config[__tooltip_show] = true; config[__tooltip_grouped] = true; config[__tooltip_format_title] = undefined; config[__tooltip_format_name] = undefined; config[__tooltip_format_value] = undefined; config[__tooltip_contents] = function (d, defaultTitleFormat, defaultValueFormat, color) { return this.getTooltipContent ? this.getTooltipContent(d, defaultTitleFormat, defaultValueFormat, color) : ''; }, config[__tooltip_init_show] = false; config[__tooltip_init_x] = 0; config[__tooltip_init_position] = {top: '0px', left: '50px'}; Object.keys(this.additionalConfig).forEach(function (key) { config[key] = this.additionalConfig[key]; }, this); return config; }; c3_chart_internal_fn.additionalConfig = {}; c3_chart_internal_fn.loadConfig = function (config) { var this_config = this.config, target, keys, read; function find() { var key = keys.shift(); // console.log("key =>", key, ", target =>", target); if (key && target && typeof target === 'object' && key in target) { target = target[key]; return find(); } else if (!key) { return target; } else { return undefined; } } Object.keys(this_config).forEach(function (key) { target = config; keys = key.split('_'); read = find(); // console.log("CONFIG : ", key, read); if (isDefined(read)) { this_config[key] = read; } }); }; c3_chart_internal_fn.getScale = function (min, max, forTimeseries) { return (forTimeseries ? this.d3.time.scale() : this.d3.scale.linear()).range([min, max]); }; c3_chart_internal_fn.getX = function (min, max, domain, offset) { var $$ = this, scale = $$.getScale(min, max, $$.isTimeSeries()), _scale = domain ? scale.domain(domain) : scale, key; // Define customized scale if categorized axis if ($$.isCategorized()) { offset = offset || function () { return 0; }; scale = function (d, raw) { var v = _scale(d) + offset(d); return raw ? v : Math.ceil(v); }; } else { scale = function (d, raw) { var v = _scale(d); return raw ? v : Math.ceil(v); }; } // define functions for (key in _scale) { scale[key] = _scale[key]; } scale.orgDomain = function () { return _scale.domain(); }; // define custom domain() for categorized axis if ($$.isCategorized()) { scale.domain = function (domain) { if (!arguments.length) { domain = this.orgDomain(); return [domain[0], domain[1] + 1]; } _scale.domain(domain); return scale; }; } return scale; }; c3_chart_internal_fn.getY = function (min, max, domain) { var scale = this.getScale(min, max); if (domain) { scale.domain(domain); } return scale; }; c3_chart_internal_fn.getYScale = function (id) { return this.getAxisId(id) === 'y2' ? this.y2 : this.y; }; c3_chart_internal_fn.getSubYScale = function (id) { return this.getAxisId(id) === 'y2' ? this.subY2 : this.subY; }; c3_chart_internal_fn.updateScales = function () { var $$ = this, config = $$.config, forInit = !$$.x; // update edges $$.xMin = config[__axis_rotated] ? 1 : 0; $$.xMax = config[__axis_rotated] ? $$.height : $$.width; $$.yMin = config[__axis_rotated] ? 0 : $$.height; $$.yMax = config[__axis_rotated] ? $$.width : 1; $$.subXMin = $$.xMin; $$.subXMax = $$.xMax; $$.subYMin = config[__axis_rotated] ? 0 : $$.height2; $$.subYMax = config[__axis_rotated] ? $$.width2 : 1; // update scales $$.x = $$.getX($$.xMin, $$.xMax, forInit ? undefined : $$.x.orgDomain(), function () { return $$.xAxis.tickOffset(); }); $$.y = $$.getY($$.yMin, $$.yMax, forInit ? undefined : $$.y.domain()); $$.y2 = $$.getY($$.yMin, $$.yMax, forInit ? undefined : $$.y2.domain()); $$.subX = $$.getX($$.xMin, $$.xMax, $$.orgXDomain, function (d) { return d % 1 ? 0 : $$.subXAxis.tickOffset(); }); $$.subY = $$.getY($$.subYMin, $$.subYMax, forInit ? undefined : $$.subY.domain()); $$.subY2 = $$.getY($$.subYMin, $$.subYMax, forInit ? undefined : $$.subY2.domain()); // update axes $$.xAxisTickFormat = $$.getXAxisTickFormat(); $$.xAxisTickValues = config[__axis_x_tick_values] ? config[__axis_x_tick_values] : (forInit ? undefined : $$.xAxis.tickValues()); $$.xAxis = $$.getXAxis($$.x, $$.xOrient, $$.xAxisTickFormat, $$.xAxisTickValues); $$.subXAxis = $$.getXAxis($$.subX, $$.subXOrient, $$.xAxisTickFormat, $$.xAxisTickValues); $$.yAxis = $$.getYAxis($$.y, $$.yOrient, config[__axis_y_tick_format], config[__axis_y_ticks]); $$.y2Axis = $$.getYAxis($$.y2, $$.y2Orient, config[__axis_y2_tick_format], config[__axis_y2_ticks]); // Set initialized scales to brush and zoom if (!forInit) { if ($$.brush) { $$.brush.scale($$.subX); } if (config[__zoom_enabled]) { $$.zoom.scale($$.x); } } // update for arc if ($$.updateArc) { $$.updateArc(); } }; c3_chart_internal_fn.getYDomainMin = function (targets) { var $$ = this, config = $$.config, ids = $$.mapToIds(targets), ys = $$.getValuesAsIdKeyed(targets), j, k, baseId, idsInGroup, id, hasNegativeValue; if (config[__data_groups].length > 0) { hasNegativeValue = $$.hasNegativeValueInTargets(targets); for (j = 0; j < config[__data_groups].length; j++) { // Determine baseId idsInGroup = config[__data_groups][j].filter(function (id) { return ids.indexOf(id) >= 0; }); if (idsInGroup.length === 0) { continue; } baseId = idsInGroup[0]; // Consider negative values if (hasNegativeValue && ys[baseId]) { ys[baseId].forEach(function (v, i) { ys[baseId][i] = v < 0 ? v : 0; }); } // Compute min for (k = 1; k < idsInGroup.length; k++) { id = idsInGroup[k]; if (! ys[id]) { continue; } ys[id].forEach(function (v, i) { if ($$.getAxisId(id) === $$.getAxisId(baseId) && ys[baseId] && !(hasNegativeValue && +v > 0)) { ys[baseId][i] += +v; } }); } } } return $$.d3.min(Object.keys(ys).map(function (key) { return $$.d3.min(ys[key]); })); }; c3_chart_internal_fn.getYDomainMax = function (targets) { var $$ = this, config = $$.config, ids = $$.mapToIds(targets), ys = $$.getValuesAsIdKeyed(targets), j, k, baseId, idsInGroup, id, hasPositiveValue; if (config[__data_groups].length > 0) { hasPositiveValue = $$.hasPositiveValueInTargets(targets); for (j = 0; j < config[__data_groups].length; j++) { // Determine baseId idsInGroup = config[__data_groups][j].filter(function (id) { return ids.indexOf(id) >= 0; }); if (idsInGroup.length === 0) { continue; } baseId = idsInGroup[0]; // Consider positive values if (hasPositiveValue && ys[baseId]) { ys[baseId].forEach(function (v, i) { ys[baseId][i] = v > 0 ? v : 0; }); } // Compute max for (k = 1; k < idsInGroup.length; k++) { id = idsInGroup[k]; if (! ys[id]) { continue; } ys[id].forEach(function (v, i) { if ($$.getAxisId(id) === $$.getAxisId(baseId) && ys[baseId] && !(hasPositiveValue && +v < 0)) { ys[baseId][i] += +v; } }); } } } return $$.d3.max(Object.keys(ys).map(function (key) { return $$.d3.max(ys[key]); })); }; c3_chart_internal_fn.getYDomain = function (targets, axisId) { var $$ = this, config = $$.config, yTargets = targets.filter(function (d) { return $$.getAxisId(d.id) === axisId; }), yMin = axisId === 'y2' ? config[__axis_y2_min] : config[__axis_y_min], yMax = axisId === 'y2' ? config[__axis_y2_max] : config[__axis_y_max], yDomainMin = isValue(yMin) ? yMin : $$.getYDomainMin(yTargets), yDomainMax = isValue(yMax) ? yMax : $$.getYDomainMax(yTargets), domainLength, padding, padding_top, padding_bottom, center = axisId === 'y2' ? config[__axis_y2_center] : config[__axis_y_center], yDomainAbs, lengths, diff, ratio, isAllPositive, isAllNegative, isZeroBased = ($$.hasType('bar', yTargets) && config[__bar_zerobased]) || ($$.hasType('area', yTargets) && config[__area_zerobased]), showHorizontalDataLabel = $$.hasDataLabel() && config[__axis_rotated], showVerticalDataLabel = $$.hasDataLabel() && !config[__axis_rotated]; if (yTargets.length === 0) { // use current domain if target of axisId is none return axisId === 'y2' ? $$.y2.domain() : $$.y.domain(); } if (yDomainMin === yDomainMax) { yDomainMin < 0 ? yDomainMax = 0 : yDomainMin = 0; } isAllPositive = yDomainMin >= 0 && yDomainMax >= 0; isAllNegative = yDomainMin <= 0 && yDomainMax <= 0; // Bar/Area chart should be 0-based if all positive|negative if (isZeroBased) { if (isAllPositive) { yDomainMin = 0; } if (isAllNegative) { yDomainMax = 0; } } domainLength = Math.abs(yDomainMax - yDomainMin); padding = padding_top = padding_bottom = domainLength * 0.1; if (center) { yDomainAbs = Math.max(Math.abs(yDomainMin), Math.abs(yDomainMax)); yDomainMax = yDomainAbs - center; yDomainMin = center - yDomainAbs; } // add padding for data label if (showHorizontalDataLabel) { lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, axisId, 'width'); diff = diffDomain($$.y.range()); ratio = [lengths[0] / diff, lengths[1] / diff]; padding_top += domainLength * (ratio[1] / (1 - ratio[0] - ratio[1])); padding_bottom += domainLength * (ratio[0] / (1 - ratio[0] - ratio[1])); } else if (showVerticalDataLabel) { lengths = $$.getDataLabelLength(yDomainMin, yDomainMax, axisId, 'height'); padding_top += lengths[1]; padding_bottom += lengths[0]; } if (axisId === 'y' && config[__axis_y_padding]) { padding_top = $$.getAxisPadding(config[__axis_y_padding], 'top', padding, domainLength); padding_bottom = $$.getAxisPadding(config[__axis_y_padding], 'bottom', padding, domainLength); } if (axisId === 'y2' && config[__axis_y2_padding]) { padding_top = $$.getAxisPadding(config[__axis_y2_padding], 'top', padding, domainLength); padding_bottom = $$.getAxisPadding(config[__axis_y2_padding], 'bottom', padding, domainLength); } // Bar/Area chart should be 0-based if all positive|negative if (isZeroBased) { if (isAllPositive) { padding_bottom = yDomainMin; } if (isAllNegative) { padding_top = -yDomainMax; } } return [yDomainMin - padding_bottom, yDomainMax + padding_top]; }; c3_chart_internal_fn.getXDomainMin = function (targets) { var $$ = this, config = $$.config; return config[__axis_x_min] ? ($$.isTimeSeries() ? this.parseDate(config[__axis_x_min]) : config[__axis_x_min]) : $$.d3.min(targets, function (t) { return $$.d3.min(t.values, function (v) { return v.x; }); }); }; c3_chart_internal_fn.getXDomainMax = function (targets) { var $$ = this, config = $$.config; return config[__axis_x_max] ? ($$.isTimeSeries() ? this.parseDate(config[__axis_x_max]) : config[__axis_x_max]) : $$.d3.max(targets, function (t) { return $$.d3.max(t.values, function (v) { return v.x; }); }); }; c3_chart_internal_fn.getXDomainPadding = function (targets) { var $$ = this, config = $$.config, edgeX = this.getEdgeX(targets), diff = edgeX[1] - edgeX[0], maxDataCount, padding, paddingLeft, paddingRight; if ($$.isCategorized()) { padding = 0; } else if ($$.hasType('bar', targets)) { maxDataCount = $$.getMaxDataCount(); padding = maxDataCount > 1 ? (diff / (maxDataCount - 1)) / 2 : 0.5; } else { padding = diff * 0.01; } if (typeof config[__axis_x_padding] === 'object' && notEmpty(config[__axis_x_padding])) { paddingLeft = isValue(config[__axis_x_padding].left) ? config[__axis_x_padding].left : padding; paddingRight = isValue(config[__axis_x_padding].right) ? config[__axis_x_padding].right : padding; } else if (typeof config[__axis_x_padding] === 'number') { paddingLeft = paddingRight = config[__axis_x_padding]; } else { paddingLeft = paddingRight = padding; } return {left: paddingLeft, right: paddingRight}; }; c3_chart_internal_fn.getXDomain = function (targets) { var $$ = this, xDomain = [$$.getXDomainMin(targets), $$.getXDomainMax(targets)], firstX = xDomain[0], lastX = xDomain[1], padding = $$.getXDomainPadding(targets), min = 0, max = 0; // show center of x domain if min and max are the same if ((firstX - lastX) === 0 && !$$.isCategorized()) { firstX = $$.isTimeSeries() ? new Date(firstX.getTime() * 0.5) : -0.5; lastX = $$.isTimeSeries() ? new Date(lastX.getTime() * 1.5) : 0.5; } if (firstX || firstX === 0) { min = $$.isTimeSeries() ? new Date(firstX.getTime() - padding.left) : firstX - padding.left; } if (lastX || lastX === 0) { max = $$.isTimeSeries() ? new Date(lastX.getTime() + padding.right) : lastX + padding.right; } return [min, max]; }; c3_chart_internal_fn.updateXDomain = function (targets, withUpdateXDomain, withUpdateOrgXDomain, domain) { var $$ = this, config = $$.config; if (withUpdateOrgXDomain) { $$.x.domain(domain ? domain : $$.d3.extent($$.getXDomain(targets))); $$.orgXDomain = $$.x.domain(); if (config[__zoom_enabled]) { $$.zoom.scale($$.x).updateScaleExtent(); } $$.subX.domain($$.x.domain()); if ($$.brush) { $$.brush.scale($$.subX); } } if (withUpdateXDomain) { $$.x.domain(domain ? domain : (!$$.brush || $$.brush.empty()) ? $$.orgXDomain : $$.brush.extent()); if (config[__zoom_enabled]) { $$.zoom.scale($$.x).updateScaleExtent(); } } return $$.x.domain(); }; c3_chart_internal_fn.isX = function (key) { var $$ = this, config = $$.config; return (config[__data_x] && key === config[__data_x]) || (notEmpty(config[__data_xs]) && hasValue(config[__data_xs], key)); }; c3_chart_internal_fn.isNotX = function (key) { return !this.isX(key); }; c3_chart_internal_fn.getXKey = function (id) { var $$ = this, config = $$.config; return config[__data_x] ? config[__data_x] : notEmpty(config[__data_xs]) ? config[__data_xs][id] : null; }; c3_chart_internal_fn.getXValuesOfXKey = function (key, targets) { var $$ = this, xValues, ids = targets && notEmpty(targets) ? $$.mapToIds(targets) : []; ids.forEach(function (id) { if ($$.getXKey(id) === key) { xValues = $$.data.xs[id]; } }); return xValues; }; c3_chart_internal_fn.getXValue = function (id, i) { var $$ = this; return id in $$.data.xs && $$.data.xs[id] && isValue($$.data.xs[id][i]) ? $$.data.xs[id][i] : i; }; c3_chart_internal_fn.getOtherTargetXs = function () { var $$ = this, idsForX = Object.keys($$.data.xs); return idsForX.length ? $$.data.xs[idsForX[0]] : null; }; c3_chart_internal_fn.getOtherTargetX = function (index) { var xs = this.getOtherTargetXs(); return xs && index < xs.length ? xs[index] : null; }; c3_chart_internal_fn.addXs = function (xs) { var $$ = this; Object.keys(xs).forEach(function (id) { $$.config[__data_xs][id] = xs[id]; }); }; c3_chart_internal_fn.hasMultipleX = function (xs) { return this.d3.set(Object.keys(xs).map(function (id) { return xs[id]; })).size() > 1; }; c3_chart_internal_fn.isMultipleX = function () { var $$ = this, config = $$.config; return notEmpty(config[__data_xs]) && $$.hasMultipleX(config[__data_xs]); }; c3_chart_internal_fn.addName = function (data) { var $$ = this, name; if (data) { name = $$.config[__data_names][data.id]; data.name = name ? name : data.id; } return data; }; c3_chart_internal_fn.getValueOnIndex = function (values, index) { var valueOnIndex = values.filter(function (v) { return v.index === index; }); return valueOnIndex.length ? valueOnIndex[0] : null; }; c3_chart_internal_fn.updateTargetX = function (targets, x) { var $$ = this; targets.forEach(function (t) { t.values.forEach(function (v, i) { v.x = $$.generateTargetX(x[i], t.id, i); }); $$.data.xs[t.id] = x; }); }; c3_chart_internal_fn.updateTargetXs = function (targets, xs) { var $$ = this; targets.forEach(function (t) { if (xs[t.id]) { $$.updateTargetX([t], xs[t.id]); } }); }; c3_chart_internal_fn.generateTargetX = function (rawX, id, index) { var $$ = this, x; if ($$.isTimeSeries()) { x = rawX ? $$.parseDate(rawX) : $$.parseDate($$.getXValue(id, index)); } else if ($$.isCustomX() && !$$.isCategorized()) { x = isValue(rawX) ? +rawX : $$.getXValue(id, index); } else { x = index; } return x; }; c3_chart_internal_fn.cloneTarget = function (target) { return { id : target.id, id_org : target.id_org, values : target.values.map(function (d) { return {x: d.x, value: d.value, id: d.id}; }) }; }; c3_chart_internal_fn.getPrevX = function (i) { var $$ = this, value = $$.getValueOnIndex($$.data.targets[0].values, i - 1); return value ? value.x : null; }; c3_chart_internal_fn.getNextX = function (i) { var $$ = this, value = $$.getValueOnIndex($$.data.targets[0].values, i + 1); return value ? value.x : null; }; c3_chart_internal_fn.getMaxDataCount = function () { var $$ = this; return $$.d3.max($$.data.targets, function (t) { return t.values.length; }); }; c3_chart_internal_fn.getMaxDataCountTarget = function (targets) { var length = targets.length, max = 0, maxTarget; if (length > 1) { targets.forEach(function (t) { if (t.values.length > max) { maxTarget = t; max = t.values.length; } }); } else { maxTarget = length ? targets[0] : null; } return maxTarget; }; c3_chart_internal_fn.getEdgeX = function (targets) { var target = this.getMaxDataCountTarget(targets), firstData, lastData; if (!target) { return [0, 0]; } firstData = target.values[0], lastData = target.values[target.values.length - 1]; return [firstData.x, lastData.x]; }; c3_chart_internal_fn.mapToIds = function (targets) { return targets.map(function (d) { return d.id; }); }; c3_chart_internal_fn.mapToTargetIds = function (ids) { var $$ = this; return ids ? (isString(ids) ? [ids] : ids) : $$.mapToIds($$.data.targets); }; c3_chart_internal_fn.hasTarget = function (targets, id) { var ids = this.mapToIds(targets), i; for (i = 0; i < ids.length; i++) { if (ids[i] === id) { return true; } } return false; }; c3_chart_internal_fn.isTargetToShow = function (targetId) { return this.hiddenTargetIds.indexOf(targetId) < 0; }; c3_chart_internal_fn.isLegendToShow = function (targetId) { return this.hiddenLegendIds.indexOf(targetId) < 0; }; c3_chart_internal_fn.filterTargetsToShow = function (targets) { var $$ = this; return targets.filter(function (t) { return $$.isTargetToShow(t.id); }); }; c3_chart_internal_fn.mapTargetsToUniqueXs = function (targets) { var $$ = this; var xs = $$.d3.set($$.d3.merge(targets.map(function (t) { return t.values.map(function (v) { return v.x; }); }))).values(); return $$.isTimeSeries() ? xs.map(function (x) { return new Date(x); }) : xs.map(function (x) { return +x; }); }; c3_chart_internal_fn.addHiddenTargetIds = function (targetIds) { this.hiddenTargetIds = this.hiddenTargetIds.concat(targetIds); }; c3_chart_internal_fn.removeHiddenTargetIds = function (targetIds) { this.hiddenTargetIds = this.hiddenTargetIds.filter(function (id) { return targetIds.indexOf(id) < 0; }); }; c3_chart_internal_fn.addHiddenLegendIds = function (targetIds) { this.hiddenLegendIds = this.hiddenLegendIds.concat(targetIds); }; c3_chart_internal_fn.removeHiddenLegendIds = function (targetIds) { this.hiddenLegendIds = this.hiddenLegendIds.filter(function (id) { return targetIds.indexOf(id) < 0; }); }; c3_chart_internal_fn.getValuesAsIdKeyed = function (targets) { var ys = {}; targets.forEach(function (t) { ys[t.id] = []; t.values.forEach(function (v) { ys[t.id].push(v.value); }); }); return ys; }; c3_chart_internal_fn.checkValueInTargets = function (targets, checker) { var ids = Object.keys(targets), i, j, values; for (i = 0; i < ids.length; i++) { values = targets[ids[i]].values; for (j = 0; j < values.length; j++) { if (checker(values[j].value)) { return true; } } } return false; }; c3_chart_internal_fn.hasNegativeValueInTargets = function (targets) { return this.checkValueInTargets(targets, function (v) { return v < 0; }); }; c3_chart_internal_fn.hasPositiveValueInTargets = function (targets) { return this.checkValueInTargets(targets, function (v) { return v > 0; }); }; c3_chart_internal_fn.isOrderDesc = function () { var config = this.config; return config[__data_order] && config[__data_order].toLowerCase() === 'desc'; }; c3_chart_internal_fn.isOrderAsc = function () { var config = this.config; return config[__data_order] && config[__data_order].toLowerCase() === 'asc'; }; c3_chart_internal_fn.orderTargets = function (targets) { var $$ = this, config = $$.config, orderAsc = $$.isOrderAsc(), orderDesc = $$.isOrderDesc(); if (orderAsc || orderDesc) { targets.sort(function (t1, t2) { var reducer = function (p, c) { return p + Math.abs(c.value); }; var t1Sum = t1.values.reduce(reducer, 0), t2Sum = t2.values.reduce(reducer, 0); return orderAsc ? t2Sum - t1Sum : t1Sum - t2Sum; }); } else if (isFunction(config[__data_order])) { targets.sort(config[__data_order]); } // TODO: accept name array for order return targets; }; c3_chart_internal_fn.filterSameX = function (targets, x) { return this.d3.merge(targets.map(function (t) { return t.values; })).filter(function (v) { return v.x - x === 0; }); }; c3_chart_internal_fn.filterRemoveNull = function (data) { return data.filter(function (d) { return isValue(d.value); }); }; c3_chart_internal_fn.hasDataLabel = function () { var config = this.config; if (typeof config[__data_labels] === 'boolean' && config[__data_labels]) { return true; } else if (typeof config[__data_labels] === 'object' && notEmpty(config[__data_labels])) { return true; } return false; }; c3_chart_internal_fn.getDataLabelLength = function (min, max, axisId, key) { var $$ = this, lengths = [0, 0], paddingCoef = 1.3; $$.selectChart.select('svg').selectAll('.dummy') .data([min, max]) .enter().append('text') .text(function (d) { return $$.formatByAxisId(axisId)(d); }) .each(function (d, i) { lengths[i] = this.getBoundingClientRect()[key] * paddingCoef; }) .remove(); return lengths; }; c3_chart_internal_fn.isNoneArc = function (d) { return this.hasTarget(this.data.targets, d.id); }, c3_chart_internal_fn.isArc = function (d) { return 'data' in d && this.hasTarget(this.data.targets, d.data.id); }; c3_chart_internal_fn.findSameXOfValues = function (values, index) { var i, targetX = values[index].x, sames = []; for (i = index - 1; i >= 0; i--) { if (targetX !== values[i].x) { break; } sames.push(values[i]); } for (i = index; i < values.length; i++) { if (targetX !== values[i].x) { break; } sames.push(values[i]); } return sames; }; c3_chart_internal_fn.findClosestOfValues = function (values, pos, _min, _max) { // MEMO: values must be sorted by x var $$ = this, min = _min ? _min : 0, max = _max ? _max : values.length - 1, med = Math.floor((max - min) / 2) + min, value = values[med], diff = $$.x(value.x) - pos[$$.config[__axis_rotated] ? 1 : 0], candidates; // Update range for search diff > 0 ? max = med : min = med; // if candidates are two closest min and max, stop recursive call if ((max - min) === 1 || (min === 0 && max === 0)) { // Get candidates that has same min and max index candidates = []; if (values[min].x || values[min].x === 0) { candidates = candidates.concat($$.findSameXOfValues(values, min)); } if (values[max].x || values[max].x === 0) { candidates = candidates.concat($$.findSameXOfValues(values, max)); } // Determine the closest and return return $$.findClosest(candidates, pos); } return $$.findClosestOfValues(values, pos, min, max); }; c3_chart_internal_fn.findClosestFromTargets = function (targets, pos) { var $$ = this, candidates; // map to array of closest points of each target candidates = targets.map(function (target) { return $$.findClosestOfValues(target.values, pos); }); // decide closest point and return return $$.findClosest(candidates, pos); }; c3_chart_internal_fn.findClosest = function (values, pos) { var $$ = this, minDist, closest; values.forEach(function (v) { var d = $$.dist(v, pos); if (d < minDist || ! minDist) { minDist = d; closest = v; } }); return closest; }; c3_chart_internal_fn.dist = function (data, pos) { var $$ = this, config = $$.config, yScale = $$.getAxisId(data.id) === 'y' ? $$.y : $$.y2, xIndex = config[__axis_rotated] ? 1 : 0, yIndex = config[__axis_rotated] ? 0 : 1; return Math.pow($$.x(data.x) - pos[xIndex], 2) + Math.pow(yScale(data.value) - pos[yIndex], 2); }; c3_chart_internal_fn.convertUrlToData = function (url, mimeType, keys, done) { var $$ = this, type = mimeType ? mimeType : 'csv'; $$.d3.xhr(url, function (error, data) { var d; if (type === 'json') { d = $$.convertJsonToData(JSON.parse(data.response), keys); } else { d = $$.convertCsvToData(data.response); } done.call($$, d); }); }; c3_chart_internal_fn.convertCsvToData = function (csv) { var d3 = this.d3, rows = d3.csv.parseRows(csv), d; if (rows.length === 1) { d = [{}]; rows[0].forEach(function (id) { d[0][id] = null; }); } else { d = d3.csv.parse(csv); } return d; }; c3_chart_internal_fn.convertJsonToData = function (json, keys) { var $$ = this, new_rows = [], targetKeys, data; if (keys) { // when keys specified, json would be an array that includes objects targetKeys = keys.value; if (keys.x) { targetKeys.push(keys.x); $$.config[__data_x] = keys.x; } new_rows.push(targetKeys); json.forEach(function (o) { var new_row = []; targetKeys.forEach(function (key) { // convert undefined to null because undefined data will be removed in convertDataToTargets() var v = isUndefined(o[key]) ? null : o[key]; new_row.push(v); }); new_rows.push(new_row); }); data = $$.convertRowsToData(new_rows); } else { Object.keys(json).forEach(function (key) { new_rows.push([key].concat(json[key])); }); data = $$.convertColumnsToData(new_rows); } return data; }; c3_chart_internal_fn.convertRowsToData = function (rows) { var keys = rows[0], new_row = {}, new_rows = [], i, j; for (i = 1; i < rows.length; i++) { new_row = {}; for (j = 0; j < rows[i].length; j++) { if (isUndefined(rows[i][j])) { throw new Error("Source data is missing a component at (" + i + "," + j + ")!"); } new_row[keys[j]] = rows[i][j]; } new_rows.push(new_row); } return new_rows; }; c3_chart_internal_fn.convertColumnsToData = function (columns) { var new_rows = [], i, j, key; for (i = 0; i < columns.length; i++) { key = columns[i][0]; for (j = 1; j < columns[i].length; j++) { if (isUndefined(new_rows[j - 1])) { new_rows[j - 1] = {}; } if (isUndefined(columns[i][j])) { throw new Error("Source data is missing a component at (" + i + "," + j + ")!"); } new_rows[j - 1][key] = columns[i][j]; } } return new_rows; }; c3_chart_internal_fn.convertDataToTargets = function (data, appendXs) { var $$ = this, config = $$.config, ids = $$.d3.keys(data[0]).filter($$.isNotX, $$), xs = $$.d3.keys(data[0]).filter($$.isX, $$), targets; // save x for update data by load when custom x and c3.x API ids.forEach(function (id) { var xKey = $$.getXKey(id); if ($$.isCustomX() || $$.isTimeSeries()) { // if included in input data if (xs.indexOf(xKey) >= 0) { $$.data.xs[id] = (appendXs && $$.data.xs[id] ? $$.data.xs[id] : []).concat( data.map(function (d) { return d[xKey]; }) .filter(isValue) .map(function (rawX, i) { return $$.generateTargetX(rawX, id, i); }) ); } // if not included in input data, find from preloaded data of other id's x else if (config[__data_x]) { $$.data.xs[id] = $$.getOtherTargetXs(); } // if not included in input data, find from preloaded data else if (notEmpty(config[__data_xs])) { $$.data.xs[id] = $$.getXValuesOfXKey(xKey, $$.data.targets); } // MEMO: if no x included, use same x of current will be used } else { $$.data.xs[id] = data.map(function (d, i) { return i; }); } }); // check x is defined ids.forEach(function (id) { if (!$$.data.xs[id]) { throw new Error('x is not defined for id = "' + id + '".'); } }); // convert to target targets = ids.map(function (id, index) { var convertedId = config[__data_idConverter](id); return { id: convertedId, id_org: id, values: data.map(function (d, i) { var xKey = $$.getXKey(id), rawX = d[xKey], x = $$.generateTargetX(rawX, id, i); // use x as categories if custom x and categorized if ($$.isCustomX() && $$.isCategorized() && index === 0 && rawX) { if (i === 0) { config[__axis_x_categories] = []; } config[__axis_x_categories].push(rawX); } // mark as x = undefined if value is undefined and filter to remove after mapped if (isUndefined(d[id]) || $$.data.xs[id].length <= i) { x = undefined; } return {x: x, value: d[id] !== null && !isNaN(d[id]) ? +d[id] : null, id: convertedId}; }).filter(function (v) { return isDefined(v.x); }) }; }); // finish targets targets.forEach(function (t) { var i; // sort values by its x t.values = t.values.sort(function (v1, v2) { var x1 = v1.x || v1.x === 0 ? v1.x : Infinity, x2 = v2.x || v2.x === 0 ? v2.x : Infinity; return x1 - x2; }); // indexing each value i = 0; t.values.forEach(function (v) { v.index = i++; }); // this needs to be sorted because its index and value.index is identical $$.data.xs[t.id].sort(function (v1, v2) { return v1 - v2; }); }); // set target types if (config[__data_type]) { $$.setTargetType($$.mapToIds(targets).filter(function (id) { return ! (id in config[__data_types]); }), config[__data_type]); } // cache as original id keyed targets.forEach(function (d) { $$.addCache(d.id_org, d); }); return targets; }; c3_chart_internal_fn.load = function (targets, args) { var $$ = this; if (targets) { // filter loading targets if needed if (args.filter) { targets = targets.filter(args.filter); } // set type if args.types || args.type specified if (args.type || args.types) { targets.forEach(function (t) { $$.setTargetType(t.id, args.types ? args.types[t.id] : args.type); }); } // Update/Add data $$.data.targets.forEach(function (d) { for (var i = 0; i < targets.length; i++) { if (d.id === targets[i].id) { d.values = targets[i].values; targets.splice(i, 1); break; } } }); $$.data.targets = $$.data.targets.concat(targets); // add remained } // Set targets $$.updateTargets($$.data.targets); // Redraw with new targets $$.redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true}); if (args.done) { args.done(); } }; c3_chart_internal_fn.loadFromArgs = function (args) { var $$ = this; if (args.data) { $$.load($$.convertDataToTargets(args.data), args); } else if (args.url) { $$.convertUrlToData(args.url, args.mimeType, args.keys, function (data) { $$.load($$.convertDataToTargets(data), args); }); } else if (args.json) { $$.load($$.convertDataToTargets($$.convertJsonToData(args.json, args.keys)), args); } else if (args.rows) { $$.load($$.convertDataToTargets($$.convertRowsToData(args.rows)), args); } else if (args.columns) { $$.load($$.convertDataToTargets($$.convertColumnsToData(args.columns)), args); } else { $$.load(null, args); } }; c3_chart_internal_fn.unload = function (targetIds, done) { var $$ = this; if (!done) { done = function () {}; } // filter existing target targetIds = targetIds.filter(function (id) { return $$.hasTarget($$.data.targets, id); }); // If no target, call done and return if (!targetIds || targetIds.length === 0) { done(); return; } $$.svg.selectAll(targetIds.map(function (id) { return $$.selectorTarget(id); })) .transition() .style('opacity', 0) .remove() .call($$.endall, done); targetIds.forEach(function (id) { // Reset fadein for future load $$.withoutFadeIn[id] = false; // Remove target's elements if ($$.legend) { $$.legend.selectAll('.' + CLASS[_legendItem] + $$.getTargetSelectorSuffix(id)).remove(); } // Remove target $$.data.targets = $$.data.targets.filter(function (t) { return t.id !== id; }); }); }; c3_chart_internal_fn.categoryName = function (i) { var config = this.config; return i < config[__axis_x_categories].length ? config[__axis_x_categories][i] : i; }; c3_chart_internal_fn.initEventRect = function () { var $$ = this, CLASS = $$.CLASS; $$.main.select('.' + CLASS[_chart]).append("g") .attr("class", CLASS[_eventRects]) .style('fill-opacity', 0); }; c3_chart_internal_fn.redrawEventRect = function () { var $$ = this, config = $$.config, CLASS = $$.CLASS, eventRectUpdate, maxDataCountTarget, isMultipleX = $$.isMultipleX(); // rects for mouseover var eventRects = $$.main.select('.' + CLASS[_eventRects]) .style('cursor', config[__zoom_enabled] ? config[__axis_rotated] ? 'ns-resize' : 'ew-resize' : null) .classed(CLASS[_eventRectsMultiple], isMultipleX) .classed(CLASS[_eventRectsSingle], !isMultipleX); // clear old rects eventRects.selectAll('.' + CLASS[_eventRect]).remove(); // open as public variable $$.eventRect = eventRects.selectAll('.' + CLASS[_eventRect]); if (isMultipleX) { eventRectUpdate = $$.eventRect.data([0]); // enter : only one rect will be added $$.generateEventRectsForMultipleXs(eventRectUpdate.enter()); // update $$.updateEventRect(eventRectUpdate); // exit : not needed because always only one rect exists } else { // Set data and update $$.eventRect maxDataCountTarget = $$.getMaxDataCountTarget($$.data.targets); eventRects.datum(maxDataCountTarget ? maxDataCountTarget.values : []); $$.eventRect = eventRects.selectAll('.' + CLASS[_eventRect]); eventRectUpdate = $$.eventRect.data(function (d) { return d; }); // enter $$.generateEventRectsForSingleX(eventRectUpdate.enter()); // update $$.updateEventRect(eventRectUpdate); // exit eventRectUpdate.exit().remove(); } }; c3_chart_internal_fn.updateEventRect = function (eventRectUpdate) { var $$ = this, config = $$.config, x, y, w, h, rectW, rectX; // set update selection if null eventRectUpdate = eventRectUpdate || $$.eventRect.data(function (d) { return d; }); if ($$.isMultipleX()) { // TODO: rotated not supported yet x = 0; y = 0; w = $$.width; h = $$.height; } else { if (($$.isCustomX() || $$.isTimeSeries()) && !$$.isCategorized()) { rectW = function (d) { var prevX = $$.getPrevX(d.index), nextX = $$.getNextX(d.index), dx = $$.data.xs[d.id][d.index], w = ($$.x(nextX ? nextX : dx) - $$.x(prevX ? prevX : dx)) / 2; return w < 0 ? 0 : w; }; rectX = function (d) { var prevX = $$.getPrevX(d.index), dx = $$.data.xs[d.id][d.index]; return ($$.x(dx) + $$.x(prevX ? prevX : dx)) / 2; }; } else { rectW = $$.getEventRectWidth(); rectX = function (d) { return $$.x(d.x) - (rectW / 2); }; } x = config[__axis_rotated] ? 0 : rectX; y = config[__axis_rotated] ? rectX : 0; w = config[__axis_rotated] ? $$.width : rectW; h = config[__axis_rotated] ? rectW : $$.height; } eventRectUpdate .attr('class', $$.classEvent.bind($$)) .attr("x", x) .attr("y", y) .attr("width", w) .attr("height", h); }; c3_chart_internal_fn.generateEventRectsForSingleX = function (eventRectEnter) { var $$ = this, d3 = $$.d3, config = $$.config; eventRectEnter.append("rect") .attr("class", $$.classEvent.bind($$)) .style("cursor", config[__data_selection_enabled] && config[__data_selection_grouped] ? "pointer" : null) .on('mouseover', function (d) { var index = d.index, selectedData, newData; if ($$.dragging) { return; } // do nothing if dragging if ($$.hasArcType()) { return; } selectedData = $$.data.targets.map(function (t) { return $$.addName($$.getValueOnIndex(t.values, index)); }); // Sort selectedData as names order newData = []; Object.keys(config[__data_names]).forEach(function (id) { for (var j = 0; j < selectedData.length; j++) { if (selectedData[j] && selectedData[j].id === id) { newData.push(selectedData[j]); selectedData.shift(j); break; } } }); selectedData = newData.concat(selectedData); // Add remained // Expand shapes for selection if (config[__point_focus_expand_enabled]) { $$.expandCircles(index); } $$.expandBars(index); // Call event handler $$.main.selectAll('.' + CLASS[_shape] + '-' + index).each(function (d) { config[__data_onmouseover].call(c3, d); }); }) .on('mouseout', function (d) { var index = d.index; if ($$.hasArcType()) { return; } $$.hideXGridFocus(); $$.hideTooltip(); // Undo expanded shapes $$.unexpandCircles(index); $$.unexpandBars(); // Call event handler $$.main.selectAll('.' + CLASS[_shape] + '-' + index).each(function (d) { config[__data_onmouseout].call($$, d); }); }) .on('mousemove', function (d) { var selectedData, index = d.index, eventRect = $$.svg.select('.' + CLASS[_eventRect] + '-' + index); if ($$.dragging) { return; } // do nothing when dragging if ($$.hasArcType()) { return; } // Show tooltip selectedData = $$.filterTargetsToShow($$.data.targets).map(function (t) { return $$.addName($$.getValueOnIndex(t.values, index)); }); if (config[__tooltip_grouped]) { $$.showTooltip(selectedData, d3.mouse(this)); $$.showXGridFocus(selectedData); } if (config[__tooltip_grouped] && (!config[__data_selection_enabled] || config[__data_selection_grouped])) { return; } $$.main.selectAll('.' + CLASS[_shape] + '-' + index) .each(function () { d3.select(this).classed(CLASS[_EXPANDED], true); if (config[__data_selection_enabled]) { eventRect.style('cursor', config[__data_selection_grouped] ? 'pointer' : null); } if (!config[__tooltip_grouped]) { $$.hideXGridFocus(); $$.hideTooltip(); if (!config[__data_selection_grouped]) { $$.unexpandCircles(index); $$.unexpandBars(); } } }) .filter(function (d) { if (this.nodeName === 'circle') { return $$.isWithinCircle(this, $$.pointSelectR(d)); } else if (this.nodeName === 'path') { return $$.isWithinBar(this); } }) .each(function (d) { if (config[__data_selection_enabled] && (config[__data_selection_grouped] || config[__data_selection_isselectable](d))) { eventRect.style('cursor', 'pointer'); } if (!config[__tooltip_grouped]) { $$.showTooltip([d], d3.mouse(this)); $$.showXGridFocus([d]); if (config[__point_focus_expand_enabled]) { $$.expandCircles(index, d.id); } $$.expandBars(index, d.id); } }); }) .on('click', function (d) { var index = d.index; if ($$.hasArcType() || !$$.toggleShape) { return; } if ($$.cancelClick) { $$.cancelClick = false; return; } $$.main.selectAll('.' + CLASS[_shape] + '-' + index).each(function (d) { $$.toggleShape(this, d, index); }); }) .call( d3.behavior.drag().origin(Object) .on('drag', function () { $$.drag(d3.mouse(this)); }) .on('dragstart', function () { $$.dragstart(d3.mouse(this)); }) .on('dragend', function () { $$.dragend(); }) ) .on("dblclick.zoom", null); }; c3_chart_internal_fn.generateEventRectsForMultipleXs = function (eventRectEnter) { var $$ = this, d3 = $$.d3, config = $$.config; eventRectEnter.append('rect') .attr('x', 0) .attr('y', 0) .attr('width', $$.width) .attr('height', $$.height) .attr('class', CLASS[_eventRect]) .on('mouseout', function () { if ($$.hasArcType()) { return; } $$.hideXGridFocus(); $$.hideTooltip(); $$.unexpandCircles(); }) .on('mousemove', function () { var targetsToShow = $$.filterTargetsToShow($$.data.targets); var mouse, closest, sameXData, selectedData; if ($$.dragging) { return; } // do nothing when dragging if ($$.hasArcType(targetsToShow)) { return; } mouse = d3.mouse(this); closest = $$.findClosestFromTargets(targetsToShow, mouse); if (! closest) { return; } if ($$.isScatterType(closest)) { sameXData = [closest]; } else { sameXData = $$.filterSameX(targetsToShow, closest.x); } // show tooltip when cursor is close to some point selectedData = sameXData.map(function (d) { return $$.addName(d); }); $$.showTooltip(selectedData, mouse); // expand points if (config[__point_focus_expand_enabled]) { $$.unexpandCircles(); $$.expandCircles(closest.index, closest.id); } // Show xgrid focus line $$.showXGridFocus(selectedData); // Show cursor as pointer if point is close to mouse position if ($$.dist(closest, mouse) < 100) { $$.svg.select('.' + CLASS[_eventRect]).style('cursor', 'pointer'); if (!$$.mouseover) { config[__data_onmouseover].call($$, closest); $$.mouseover = true; } } else if ($$.mouseover) { $$.svg.select('.' + CLASS[_eventRect]).style('cursor', null); config[__data_onmouseout].call($$, closest); $$.mouseover = false; } }) .on('click', function () { var targetsToShow = $$.filterTargetsToShow($$.data.targets); var mouse, closest; if ($$.hasArcType(targetsToShow)) { return; } mouse = d3.mouse(this); closest = $$.findClosestFromTargets(targetsToShow, mouse); if (! closest) { return; } // select if selection enabled if ($$.dist(closest, mouse) < 100 && $$.toggleShape) { $$.main.select('.' + CLASS[_circles] + $$.getTargetSelectorSuffix(closest.id)).select('.' + CLASS[_circle] + '-' + closest.index).each(function () { $$.toggleShape(this, closest, closest.index); }); } }) .call( d3.behavior.drag().origin(Object) .on('drag', function () { $$.drag(d3.mouse(this)); }) .on('dragstart', function () { $$.dragstart(d3.mouse(this)); }) .on('dragend', function () { $$.dragend(); }) ) .on("dblclick.zoom", null); }; c3_chart_internal_fn.getCurrentWidth = function () { var $$ = this, config = $$.config; return config[__size_width] ? config[__size_width] : $$.getParentWidth(); }; c3_chart_internal_fn.getCurrentHeight = function () { var $$ = this, config = $$.config, h = config[__size_height] ? config[__size_height] : $$.getParentHeight(); return h > 0 ? h : 320; }; c3_chart_internal_fn.getCurrentPaddingTop = function () { var config = this.config; return isValue(config[__padding_top]) ? config[__padding_top] : 0; }; c3_chart_internal_fn.getCurrentPaddingBottom = function () { var config = this.config; return isValue(config[__padding_bottom]) ? config[__padding_bottom] : 0; }; c3_chart_internal_fn.getCurrentPaddingLeft = function () { var $$ = this, config = $$.config; if (isValue(config[__padding_left])) { return config[__padding_left]; } else if (config[__axis_rotated]) { return !config[__axis_x_show] ? 1 : Math.max(ceil10($$.getAxisWidthByAxisId('x')), 40); } else { return !config[__axis_y_show] ? 1 : ceil10($$.getAxisWidthByAxisId('y')); } }; c3_chart_internal_fn.getCurrentPaddingRight = function () { var $$ = this, config = $$.config, defaultPadding = 10, legendWidthOnRight = $$.isLegendRight ? $$.getLegendWidth() + 20 : 0; if (isValue(config[__padding_right])) { return config[__padding_right] + 1; // 1 is needed not to hide tick line } else if (config[__axis_rotated]) { return defaultPadding + legendWidthOnRight; } else { return (!config[__axis_y2_show] ? defaultPadding : ceil10($$.getAxisWidthByAxisId('y2'))) + legendWidthOnRight; } }; c3_chart_internal_fn.getParentRectValue = function (key) { var parent = this.selectChart.node(), v; while (parent && parent.tagName !== 'BODY') { v = parent.getBoundingClientRect()[key]; if (v) { break; } parent = parent.parentNode; } return v; }; c3_chart_internal_fn.getParentWidth = function () { return this.getParentRectValue('width'); }; c3_chart_internal_fn.getParentHeight = function () { var h = this.selectChart.style('height'); return h.indexOf('px') > 0 ? +h.replace('px', '') : 0; }; c3_chart_internal_fn.getSvgLeft = function () { var $$ = this, config = $$.config, leftAxisClass = config[__axis_rotated] ? CLASS[_axisX] : CLASS[_axisY], leftAxis = $$.main.select('.' + leftAxisClass).node(), svgRect = leftAxis ? leftAxis.getBoundingClientRect() : {right: 0}, chartRect = $$.selectChart.node().getBoundingClientRect(), hasArc = $$.hasArcType(), svgLeft = svgRect.right - chartRect.left - (hasArc ? 0 : $$.getCurrentPaddingLeft()); return svgLeft > 0 ? svgLeft : 0; }; c3_chart_internal_fn.getAxisWidthByAxisId = function (id) { var $$ = this, position = $$.getAxisLabelPositionById(id); return position.isInner ? 20 + $$.getMaxTickWidth(id) : 40 + $$.getMaxTickWidth(id); }; c3_chart_internal_fn.getHorizontalAxisHeight = function (axisId) { var $$ = this, config = $$.config; if (axisId === 'x' && !config[__axis_x_show]) { return 0; } if (axisId === 'x' && config[__axis_x_height]) { return config[__axis_x_height]; } if (axisId === 'y' && !config[__axis_y_show]) { return config[__legend_show] && !$$.isLegendRight && !$$.isLegendInset ? 10 : 1; } if (axisId === 'y2' && !config[__axis_y2_show]) { return $$.rotated_padding_top; } return ($$.getAxisLabelPositionById(axisId).isInner ? 30 : 40) + (axisId === 'y2' ? -10 : 0); }; c3_chart_internal_fn.getEventRectWidth = function () { var $$ = this; var target = $$.getMaxDataCountTarget($$.data.targets), firstData, lastData, base, maxDataCount, ratio, w; if (!target) { return 0; } firstData = target.values[0], lastData = target.values[target.values.length - 1]; base = $$.x(lastData.x) - $$.x(firstData.x); if (base === 0) { return $$.config[__axis_rotated] ? $$.height : $$.width; } maxDataCount = $$.getMaxDataCount(); ratio = ($$.hasType('bar') ? (maxDataCount - ($$.isCategorized() ? 0.25 : 1)) / maxDataCount : 1); w = maxDataCount > 1 ? (base * ratio) / (maxDataCount - 1) : base; return w < 1 ? 1 : w; }; c3_chart_internal_fn.getShapeIndices = function (typeFilter) { var $$ = this, config = $$.config, indices = {}, i = 0, j, k; $$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$)).forEach(function (d) { for (j = 0; j < config[__data_groups].length; j++) { if (config[__data_groups][j].indexOf(d.id) < 0) { continue; } for (k = 0; k < config[__data_groups][j].length; k++) { if (config[__data_groups][j][k] in indices) { indices[d.id] = indices[config[__data_groups][j][k]]; break; } } } if (isUndefined(indices[d.id])) { indices[d.id] = i++; } }); indices.__max__ = i - 1; return indices; }; c3_chart_internal_fn.getShapeX = function (offset, targetsNum, indices, isSub) { var $$ = this, scale = isSub ? $$.subX : $$.x; return function (d) { var index = d.id in indices ? indices[d.id] : 0; return d.x || d.x === 0 ? scale(d.x) - offset * (targetsNum / 2 - index) : 0; }; }; c3_chart_internal_fn.getShapeY = function (isSub) { var $$ = this; return function (d) { var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id); return scale(d.value); }; }; c3_chart_internal_fn.getShapeOffset = function (typeFilter, indices, isSub) { var $$ = this, targets = $$.orderTargets($$.filterTargetsToShow($$.data.targets.filter(typeFilter, $$))), targetIds = targets.map(function (t) { return t.id; }); return function (d, i) { var scale = isSub ? $$.getSubYScale(d.id) : $$.getYScale(d.id), y0 = scale(0), offset = y0; targets.forEach(function (t) { if (t.id === d.id || indices[t.id] !== indices[d.id]) { return; } if (targetIds.indexOf(t.id) < targetIds.indexOf(d.id) && t.values[i].value * d.value >= 0) { offset += scale(t.values[i].value) - y0; } }); return offset; }; }; c3_chart_internal_fn.getInterpolate = function (d) { var $$ = this; return $$.isSplineType(d) ? "cardinal" : $$.isStepType(d) ? "step-after" : "linear"; }; c3_chart_internal_fn.initLine = function () { var $$ = this, CLASS = $$.CLASS; $$.main.select('.' + CLASS[_chart]).append("g") .attr("class", CLASS[_chartLines]); }; c3_chart_internal_fn.updateTargetsForLine = function (targets) { var $$ = this, config = $$.config, CLASS = $$.CLASS, mainLineUpdate, mainLineEnter, classChartLine = $$.classChartLine.bind($$), classLines = $$.classLines.bind($$), classAreas = $$.classAreas.bind($$), classCircles = $$.classCircles.bind($$); mainLineUpdate = $$.main.select('.' + CLASS[_chartLines]).selectAll('.' + CLASS[_chartLine]) .data(targets) .attr('class', classChartLine); mainLineEnter = mainLineUpdate.enter().append('g') .attr('class', classChartLine) .style('opacity', 0) .style("pointer-events", "none"); // Lines for each data mainLineEnter.append('g') .attr("class", classLines); // Areas mainLineEnter.append('g') .attr('class', classAreas); // Circles for each data point on lines mainLineEnter.append('g') .attr("class", function (d) { return $$.generateClass(CLASS[_selectedCircles], d.id); }); mainLineEnter.append('g') .attr("class", classCircles) .style("cursor", function (d) { return config[__data_selection_isselectable](d) ? "pointer" : null; }); // Update date for selected circles targets.forEach(function (t) { $$.main.selectAll('.' + CLASS[_selectedCircles] + $$.getTargetSelectorSuffix(t.id)).selectAll('.' + CLASS[_selectedCircle]).each(function (d) { d.value = t.values[d.index].value; }); }); // MEMO: can not keep same color... //mainLineUpdate.exit().remove(); }; c3_chart_internal_fn.redrawLine = function (durationForExit) { var $$ = this, CLASS = $$.CLASS; $$.mainLine = $$.main.selectAll('.' + CLASS[_lines]).selectAll('.' + CLASS[_line]) .data($$.lineData.bind($$)); $$.mainLine.enter().append('path') .attr('class', $$.classLine.bind($$)) .style("stroke", $$.color); $$.mainLine .style("opacity", $$.initialOpacity.bind($$)) .attr('transform', null); $$.mainLine.exit().transition().duration(durationForExit) .style('opacity', 0) .remove(); }; c3_chart_internal_fn.addTransitionForLine = function (transitions, drawLine) { var $$ = this; transitions.push($$.mainLine.transition() .attr("d", drawLine) .style("stroke", $$.color) .style("opacity", 1)); }; c3_chart_internal_fn.generateDrawLine = function (lineIndices, isSub) { var $$ = this, config = $$.config, line = $$.d3.svg.line(), getPoint = $$.generateGetLinePoint(lineIndices, isSub), yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale, xValue = function (d) { return (isSub ? $$.subxx : $$.xx).call($$, d); }, yValue = function (d, i) { return config[__data_groups].length > 0 ? getPoint(d, i)[0][1] : yScaleGetter.call($$, d.id)(d.value); }; line = config[__axis_rotated] ? line.x(yValue).y(xValue) : line.x(xValue).y(yValue); if (!config[__line_connect_null]) { line = line.defined(function (d) { return d.value != null; }); } return function (d) { var data = config[__line_connect_null] ? $$.filterRemoveNull(d.values) : d.values, x = isSub ? $$.x : $$.subX, y = yScaleGetter.call($$, d.id), x0 = 0, y0 = 0, path; if ($$.isLineType(d)) { if (config[__data_regions][d.id]) { path = $$.lineWithRegions(data, x, y, config[__data_regions][d.id]); } else { path = line.interpolate($$.getInterpolate(d))(data); } } else { if (data[0]) { x0 = x(data[0].x); y0 = y(data[0].value); } path = config[__axis_rotated] ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0; } return path ? path : "M 0 0"; }; }; c3_chart_internal_fn.generateGetLinePoint = function (lineIndices, isSub) { // partial duplication of generateGetBarPoints var $$ = this, config = $$.config, lineTargetsNum = lineIndices.__max__ + 1, x = $$.getShapeX(0, lineTargetsNum, lineIndices, !!isSub), y = $$.getShapeY(!!isSub), lineOffset = $$.getShapeOffset($$.isLineType, lineIndices, !!isSub), yScale = isSub ? $$.getSubYScale : $$.getYScale; return function (d, i) { var y0 = yScale.call($$, d.id)(0), offset = lineOffset(d, i) || y0, // offset is for stacked area chart posX = x(d), posY = y(d); // fix posY not to overflow opposite quadrant if (config[__axis_rotated]) { if ((0 < d.value && posY < y0) || (d.value < 0 && y0 < posY)) { posY = y0; } } // 1 point that marks the line position return [ [posX, posY - (y0 - offset)] ]; }; }; c3_chart_internal_fn.lineWithRegions = function (d, x, y, _regions) { var $$ = this, config = $$.config, prev = -1, i, j, s = "M", sWithRegion, xp, yp, dx, dy, dd, diff, diffx2, xValue, yValue, regions = []; function isWithinRegions(x, regions) { var i; for (i = 0; i < regions.length; i++) { if (regions[i].start < x && x <= regions[i].end) { return true; } } return false; } // Check start/end of regions if (isDefined(_regions)) { for (i = 0; i < _regions.length; i++) { regions[i] = {}; if (isUndefined(_regions[i].start)) { regions[i].start = d[0].x; } else { regions[i].start = $$.isTimeSeries() ? $$.parseDate(_regions[i].start) : _regions[i].start; } if (isUndefined(_regions[i].end)) { regions[i].end = d[d.length - 1].x; } else { regions[i].end = $$.isTimeSeries() ? $$.parseDate(_regions[i].end) : _regions[i].end; } } } // Set scales xValue = config[__axis_rotated] ? function (d) { return y(d.value); } : function (d) { return x(d.x); }; yValue = config[__axis_rotated] ? function (d) { return x(d.x); } : function (d) { return y(d.value); }; // Define svg generator function for region if ($$.isTimeSeries()) { sWithRegion = function (d0, d1, j, diff) { var x0 = d0.x.getTime(), x_diff = d1.x - d0.x, xv0 = new Date(x0 + x_diff * j), xv1 = new Date(x0 + x_diff * (j + diff)); return "M" + x(xv0) + " " + y(yp(j)) + " " + x(xv1) + " " + y(yp(j + diff)); }; } else { sWithRegion = function (d0, d1, j, diff) { return "M" + x(xp(j), true) + " " + y(yp(j)) + " " + x(xp(j + diff), true) + " " + y(yp(j + diff)); }; } // Generate for (i = 0; i < d.length; i++) { // Draw as normal if (isUndefined(regions) || ! isWithinRegions(d[i].x, regions)) { s += " " + xValue(d[i]) + " " + yValue(d[i]); } // Draw with region // TODO: Fix for horizotal charts else { xp = $$.getScale(d[i - 1].x, d[i].x, $$.isTimeSeries()); yp = $$.getScale(d[i - 1].value, d[i].value); dx = x(d[i].x) - x(d[i - 1].x); dy = y(d[i].value) - y(d[i - 1].value); dd = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2)); diff = 2 / dd; diffx2 = diff * 2; for (j = diff; j <= 1; j += diffx2) { s += sWithRegion(d[i - 1], d[i], j, diff); } } prev = d[i].x; } return s; }; c3_chart_internal_fn.redrawArea = function (durationForExit) { var $$ = this, CLASS = $$.CLASS, d3 = $$.d3; $$.mainArea = $$.main.selectAll('.' + CLASS[_areas]).selectAll('.' + CLASS[_area]) .data($$.lineData.bind($$)); $$.mainArea.enter().append('path') .attr("class", $$.classArea.bind($$)) .style("fill", $$.color) .style("opacity", function () { $$.orgAreaOpacity = +d3.select(this).style('opacity'); return 0; }); $$.mainArea .style("opacity", $$.orgAreaOpacity); $$.mainArea.exit().transition().duration(durationForExit) .style('opacity', 0) .remove(); }; c3_chart_internal_fn.addTransitionForArea = function (transitions, drawArea) { var $$ = this; transitions.push($$.mainArea.transition() .attr("d", drawArea) .style("fill", $$.color) .style("opacity", $$.orgAreaOpacity)); }; c3_chart_internal_fn.generateDrawArea = function (areaIndices, isSub) { var $$ = this, config = $$.config, area = $$.d3.svg.area(), getPoint = $$.generateGetAreaPoint(areaIndices, isSub), yScaleGetter = isSub ? $$.getSubYScale : $$.getYScale, xValue = function (d) { return (isSub ? $$.subxx : $$.xx).call($$, d); }, value0 = function (d, i) { return config[__data_groups].length > 0 ? getPoint(d, i)[0][1] : yScaleGetter.call($$, d.id)(0); }, value1 = function (d, i) { return config[__data_groups].length > 0 ? getPoint(d, i)[1][1] : yScaleGetter.call($$, d.id)(d.value); }; area = config[__axis_rotated] ? area.x0(value0).x1(value1).y(xValue) : area.x(xValue).y0(value0).y1(value1); if (!config[__line_connect_null]) { area = area.defined(function (d) { return d.value !== null; }); } return function (d) { var data = config[__line_connect_null] ? $$.filterRemoveNull(d.values) : d.values, x0 = 0, y0 = 0, path; if ($$.isAreaType(d)) { path = area.interpolate($$.getInterpolate(d))(data); } else { if (data[0]) { x0 = $$.x(data[0].x); y0 = $$.getYScale(d.id)(data[0].value); } path = config[__axis_rotated] ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0; } return path ? path : "M 0 0"; }; }; c3_chart_internal_fn.generateGetAreaPoint = function (areaIndices, isSub) { // partial duplication of generateGetBarPoints var $$ = this, config = $$.config, areaTargetsNum = areaIndices.__max__ + 1, x = $$.getShapeX(0, areaTargetsNum, areaIndices, !!isSub), y = $$.getShapeY(!!isSub), areaOffset = $$.getShapeOffset($$.isAreaType, areaIndices, !!isSub), yScale = isSub ? $$.getSubYScale : $$.getYScale; return function (d, i) { var y0 = yScale.call($$, d.id)(0), offset = areaOffset(d, i) || y0, // offset is for stacked area chart posX = x(d), posY = y(d); // fix posY not to overflow opposite quadrant if (config[__axis_rotated]) { if ((0 < d.value && posY < y0) || (d.value < 0 && y0 < posY)) { posY = y0; } } // 1 point that marks the area position return [ [posX, offset], [posX, posY - (y0 - offset)] ]; }; }; c3_chart_internal_fn.redrawCircle = function () { var $$ = this, CLASS = $$.CLASS; $$.mainCircle = $$.main.selectAll('.' + CLASS[_circles]).selectAll('.' + CLASS[_circle]) .data($$.lineOrScatterData.bind($$)); $$.mainCircle.enter().append("circle") .attr("class", $$.classCircle.bind($$)) .attr("r", $$.pointR.bind($$)) .style("fill", $$.color); $$.mainCircle .style("opacity", $$.initialOpacity.bind($$)); $$.mainCircle.exit().remove(); }; c3_chart_internal_fn.addTransitionForCircle = function (transitions, cx, cy) { var $$ = this; transitions.push($$.mainCircle.transition() .style('opacity', $$.opacityForCircle.bind($$)) .style("fill", $$.color) .attr("cx", cx) .attr("cy", cy)); transitions.push($$.main.selectAll('.' + CLASS[_selectedCircle]).transition() .attr("cx", cx) .attr("cy", cy)); }; c3_chart_internal_fn.circleX = function (d) { return d.x || d.x === 0 ? this.x(d.x) : null; }; c3_chart_internal_fn.circleY = function (d, i) { var $$ = this, lineIndices = $$.getShapeIndices($$.isLineType), getPoint = $$.generateGetLinePoint(lineIndices); return $$.config[__data_groups].length > 0 ? getPoint(d, i)[0][1] : $$.getYScale(d.id)(d.value); }; c3_chart_internal_fn.getCircles = function (i, id) { var $$ = this; return (id ? $$.main.selectAll('.' + CLASS[_circles] + $$.getTargetSelectorSuffix(id)) : $$.main).selectAll('.' + CLASS[_circle] + (isValue(i) ? '-' + i : '')); }; c3_chart_internal_fn.expandCircles = function (i, id) { var $$ = this, r = $$.pointExpandedR.bind($$); $$.getCircles(i, id) .classed(CLASS[_EXPANDED], true) .attr('r', r); }; c3_chart_internal_fn.unexpandCircles = function (i) { var $$ = this, r = $$.pointR.bind($$); $$.getCircles(i) .filter(function () { return $$.d3.select(this).classed(CLASS[_EXPANDED]); }) .classed(CLASS[_EXPANDED], false) .attr('r', r); }; c3_chart_internal_fn.pointR = function (d) { var $$ = this, config = $$.config; return config[__point_show] && !$$.isStepType(d) ? (isFunction(config[__point_r]) ? config[__point_r](d) : config[__point_r]) : 0; }; c3_chart_internal_fn.pointExpandedR = function (d) { var $$ = this, config = $$.config; return config[__point_focus_expand_enabled] ? (config[__point_focus_expand_r] ? config[__point_focus_expand_r] : $$.pointR(d) * 1.75) : $$.pointR(d); }; c3_chart_internal_fn.pointSelectR = function (d) { var $$ = this, config = $$.config; return config[__point_select_r] ? config[__point_select_r] : $$.pointR(d) * 4; }; c3_chart_internal_fn.isWithinCircle = function (_this, _r) { var d3 = this.d3, mouse = d3.mouse(_this), d3_this = d3.select(_this), cx = d3_this.attr("cx") * 1, cy = d3_this.attr("cy") * 1; return Math.sqrt(Math.pow(cx - mouse[0], 2) + Math.pow(cy - mouse[1], 2)) < _r; }; c3_chart_internal_fn.initBar = function () { var $$ = this, CLASS = $$.CLASS; $$.main.select('.' + CLASS[_chart]).append("g") .attr("class", CLASS[_chartBars]); }; c3_chart_internal_fn.updateTargetsForBar = function (targets) { var $$ = this, config = $$.config, CLASS = $$.CLASS, mainBarUpdate, mainBarEnter, classChartBar = $$.classChartBar.bind($$), classBars = $$.classBars.bind($$); mainBarUpdate = $$.main.select('.' + CLASS[_chartBars]).selectAll('.' + CLASS[_chartBar]) .data(targets) .attr('class', classChartBar); mainBarEnter = mainBarUpdate.enter().append('g') .attr('class', classChartBar) .style('opacity', 0) .style("pointer-events", "none"); // Bars for each data mainBarEnter.append('g') .attr("class", classBars) .style("cursor", function (d) { return config[__data_selection_isselectable](d) ? "pointer" : null; }); }; c3_chart_internal_fn.redrawBar = function (durationForExit) { var $$ = this, CLASS = $$.CLASS, barData = $$.barData.bind($$), classBar = $$.classBar.bind($$), initialOpacity = $$.initialOpacity.bind($$), color = function (d) { return $$.color(d.id); }; $$.mainBar = $$.main.selectAll('.' + CLASS[_bars]).selectAll('.' + CLASS[_bar]) .data(barData); $$.mainBar.enter().append('path') .attr("class", classBar) .style("stroke", color) .style("fill", color); $$.mainBar .style("opacity", initialOpacity); $$.mainBar.exit().transition().duration(durationForExit) .style('opacity', 0) .remove(); }; c3_chart_internal_fn.addTransitionForBar = function (transitions, drawBar) { var $$ = this; transitions.push($$.mainBar.transition() .attr('d', drawBar) .style("fill", $$.color) .style("opacity", 1)); }; c3_chart_internal_fn.getBarW = function (axis, barTargetsNum) { var $$ = this, config = $$.config, w = typeof config[__bar_width] === 'number' ? config[__bar_width] : barTargetsNum ? (axis.tickOffset() * 2 * config[__bar_width_ratio]) / barTargetsNum : 0; return config[__bar_width_max] && w > config[__bar_width_max] ? config[__bar_width_max] : w; }; c3_chart_internal_fn.getBars = function (i) { var $$ = this; return $$.main.selectAll('.' + CLASS[_bar] + (isValue(i) ? '-' + i : '')); }; c3_chart_internal_fn.expandBars = function (i) { var $$ = this; $$.getBars(i).classed(CLASS[_EXPANDED], true); }; c3_chart_internal_fn.unexpandBars = function (i) { var $$ = this; $$.getBars(i).classed(CLASS[_EXPANDED], false); }; c3_chart_internal_fn.generateDrawBar = function (barIndices, isSub) { var $$ = this, config = $$.config, getPoints = $$.generateGetBarPoints(barIndices, isSub); return function (d, i) { // 4 points that make a bar var points = getPoints(d, i); // switch points if axis is rotated, not applicable for sub chart var indexX = config[__axis_rotated] ? 1 : 0; var indexY = config[__axis_rotated] ? 0 : 1; var path = 'M ' + points[0][indexX] + ',' + points[0][indexY] + ' ' + 'L' + points[1][indexX] + ',' + points[1][indexY] + ' ' + 'L' + points[2][indexX] + ',' + points[2][indexY] + ' ' + 'L' + points[3][indexX] + ',' + points[3][indexY] + ' ' + 'z'; return path; }; }; c3_chart_internal_fn.generateGetBarPoints = function (barIndices, isSub) { var $$ = this, barTargetsNum = barIndices.__max__ + 1, barW = $$.getBarW($$.xAxis, barTargetsNum), barX = $$.getShapeX(barW, barTargetsNum, barIndices, !!isSub), barY = $$.getShapeY(!!isSub), barOffset = $$.getShapeOffset($$.isBarType, barIndices, !!isSub), yScale = isSub ? $$.getSubYScale : $$.getYScale; return function (d, i) { var y0 = yScale.call($$, d.id)(0), offset = barOffset(d, i) || y0, // offset is for stacked bar chart posX = barX(d), posY = barY(d); // fix posY not to overflow opposite quadrant if ($$.config[__axis_rotated]) { if ((0 < d.value && posY < y0) || (d.value < 0 && y0 < posY)) { posY = y0; } } // 4 points that make a bar return [ [posX, offset], [posX, posY - (y0 - offset)], [posX + barW, posY - (y0 - offset)], [posX + barW, offset] ]; }; }; c3_chart_internal_fn.isWithinBar = function (_this) { var d3 = this.d3, mouse = d3.mouse(_this), box = _this.getBoundingClientRect(), seg0 = _this.pathSegList.getItem(0), seg1 = _this.pathSegList.getItem(1), x = seg0.x, y = Math.min(seg0.y, seg1.y), w = box.width, h = box.height, offset = 2, sx = x - offset, ex = x + w + offset, sy = y + h + offset, ey = y - offset; return sx < mouse[0] && mouse[0] < ex && ey < mouse[1] && mouse[1] < sy; }; c3_chart_internal_fn.initText = function () { var $$ = this, CLASS = $$.CLASS; $$.main.select('.' + CLASS[_chart]).append("g") .attr("class", CLASS[_chartTexts]); $$.mainText = $$.d3.selectAll([]); }; c3_chart_internal_fn.updateTargetsForText = function (targets) { var $$ = this, CLASS = $$.CLASS, mainTextUpdate, mainTextEnter, classChartText = $$.classChartText.bind($$), classTexts = $$.classTexts.bind($$); mainTextUpdate = $$.main.select('.' + CLASS[_chartTexts]).selectAll('.' + CLASS[_chartText]) .data(targets) .attr('class', classChartText); mainTextEnter = mainTextUpdate.enter().append('g') .attr('class', classChartText) .style('opacity', 0) .style("pointer-events", "none"); mainTextEnter.append('g') .attr('class', classTexts); }; c3_chart_internal_fn.redrawText = function (durationForExit) { var $$ = this, config = $$.config, CLASS = $$.CLASS, barOrLineData = $$.barOrLineData.bind($$), classText = $$.classText.bind($$); $$.mainText = $$.main.selectAll('.' + CLASS[_texts]).selectAll('.' + CLASS[_text]) .data(barOrLineData); $$.mainText.enter().append('text') .attr("class", classText) .attr('text-anchor', function (d) { return config[__axis_rotated] ? (d.value < 0 ? 'end' : 'start') : 'middle'; }) .style("stroke", 'none') .style("fill", function (d) { return $$.color(d); }) .style("fill-opacity", 0); $$.mainText .text(function (d) { return $$.formatByAxisId($$.getAxisId(d.id))(d.value, d.id); }); $$.mainText.exit() .transition().duration(durationForExit) .style('fill-opacity', 0) .remove(); }; c3_chart_internal_fn.addTransitionForText = function (transitions, xForText, yForText, forFlow) { var $$ = this, opacityForText = forFlow ? 0 : $$.opacityForText.bind($$); transitions.push($$.mainText.transition() .attr('x', xForText) .attr('y', yForText) .style("fill", $$.color) .style("fill-opacity", opacityForText)); }; c3_chart_internal_fn.getTextRect = function (text, cls) { var rect; this.d3.select('body').selectAll('.dummy') .data([text]) .enter().append('text') .classed(cls ? cls : "", true) .text(text) .each(function () { rect = this.getBoundingClientRect(); }) .remove(); return rect; }; c3_chart_internal_fn.generateXYForText = function (barIndices, forX) { var $$ = this, getPoints = $$.generateGetBarPoints(barIndices, false), getter = forX ? $$.getXForText : $$.getYForText; return function (d, i) { return getter.call($$, getPoints(d, i), d, this); }; }; c3_chart_internal_fn.getXForText = function (points, d, textElement) { var $$ = this, box = textElement.getBoundingClientRect(), xPos, padding; if ($$.config[__axis_rotated]) { padding = $$.isBarType(d) ? 4 : 6; xPos = points[2][1] + padding * (d.value < 0 ? -1 : 1); } else { xPos = $$.hasType('bar') ? (points[2][0] + points[0][0]) / 2 : points[0][0]; } return xPos > $$.width ? $$.width - box.width : xPos; }; c3_chart_internal_fn.getYForText = function (points, d, textElement) { var $$ = this, box = textElement.getBoundingClientRect(), yPos; if ($$.config[__axis_rotated]) { yPos = (points[0][0] + points[2][0] + box.height * 0.6) / 2; } else { yPos = points[2][1] + (d.value < 0 ? box.height : $$.isBarType(d) ? -3 : -6); } return yPos < box.height ? box.height : yPos; }; c3_chart_internal_fn.setTargetType = function (targetIds, type) { var $$ = this, config = $$.config; $$.mapToTargetIds(targetIds).forEach(function (id) { $$.withoutFadeIn[id] = (type === config[__data_types][id]); config[__data_types][id] = type; }); if (!targetIds) { config[__data_type] = type; } }; c3_chart_internal_fn.hasType = function (type, targets) { var $$ = this, types = $$.config[__data_types], has = false; (targets || $$.data.targets).forEach(function (t) { if ((types[t.id] && types[t.id].indexOf(type) >= 0) || (!(t.id in types) && type === 'line')) { has = true; } }); return has; }; c3_chart_internal_fn.hasArcType = function (targets) { return this.hasType('pie', targets) || this.hasType('donut', targets) || this.hasType('gauge', targets); }; c3_chart_internal_fn.isLineType = function (d) { var config = this.config, id = isString(d) ? d : d.id; return !config[__data_types][id] || ['line', 'spline', 'area', 'area-spline', 'step', 'area-step'].indexOf(config[__data_types][id]) >= 0; }; c3_chart_internal_fn.isStepType = function (d) { var id = isString(d) ? d : d.id; return ['step', 'area-step'].indexOf(this.config[__data_types][id]) >= 0; }; c3_chart_internal_fn.isSplineType = function (d) { var id = isString(d) ? d : d.id; return ['spline', 'area-spline'].indexOf(this.config[__data_types][id]) >= 0; }; c3_chart_internal_fn.isAreaType = function (d) { var id = isString(d) ? d : d.id; return ['area', 'area-spline', 'area-step'].indexOf(this.config[__data_types][id]) >= 0; }; c3_chart_internal_fn.isBarType = function (d) { var id = isString(d) ? d : d.id; return this.config[__data_types][id] === 'bar'; }; c3_chart_internal_fn.isScatterType = function (d) { var id = isString(d) ? d : d.id; return this.config[__data_types][id] === 'scatter'; }; c3_chart_internal_fn.isPieType = function (d) { var id = isString(d) ? d : d.id; return this.config[__data_types][id] === 'pie'; }; c3_chart_internal_fn.isGaugeType = function (d) { var id = isString(d) ? d : d.id; return this.config[__data_types][id] === 'gauge'; }; c3_chart_internal_fn.isDonutType = function (d) { var id = isString(d) ? d : d.id; return this.config[__data_types][id] === 'donut'; }; c3_chart_internal_fn.isArcType = function (d) { return this.isPieType(d) || this.isDonutType(d) || this.isGaugeType(d); }; c3_chart_internal_fn.lineData = function (d) { return this.isLineType(d) ? [d] : []; }; c3_chart_internal_fn.arcData = function (d) { return this.isArcType(d.data) ? [d] : []; }; /* not used function scatterData(d) { return isScatterType(d) ? d.values : []; } */ c3_chart_internal_fn.barData = function (d) { return this.isBarType(d) ? d.values : []; }; c3_chart_internal_fn.lineOrScatterData = function (d) { return this.isLineType(d) || this.isScatterType(d) ? d.values : []; }; c3_chart_internal_fn.barOrLineData = function (d) { return this.isBarType(d) || this.isLineType(d) ? d.values : []; }; c3_chart_internal_fn.initGrid = function () { var $$ = this, config = $$.config, CLASS = $$.CLASS, d3 = $$.d3; $$.grid = $$.main.append('g') .attr("clip-path", $$.clipPath) .attr('class', CLASS[_grid]); if (config[__grid_x_show]) { $$.grid.append("g").attr("class", CLASS[_xgrids]); } if (config[__grid_y_show]) { $$.grid.append('g').attr('class', CLASS[_ygrids]); } $$.grid.append('g').attr("class", CLASS[_xgridLines]); $$.grid.append('g').attr('class', CLASS[_ygridLines]); if (config[__grid_focus_show]) { $$.grid.append('g') .attr("class", CLASS[_xgridFocus]) .append('line') .attr('class', CLASS[_xgridFocus]); } $$.xgrid = d3.selectAll([]); $$.xgridLines = d3.selectAll([]); }; c3_chart_internal_fn.updateXGrid = function (withoutUpdate) { var $$ = this, config = $$.config, CLASS = $$.CLASS, d3 = $$.d3, xgridData = $$.generateGridData(config[__grid_x_type], $$.x), tickOffset = $$.isCategorized() ? $$.xAxis.tickOffset() : 0; $$.xgridAttr = config[__axis_rotated] ? { 'x1': 0, 'x2': $$.width, 'y1': function (d) { return $$.x(d) - tickOffset; }, 'y2': function (d) { return $$.x(d) - tickOffset; } } : { 'x1': function (d) { return $$.x(d) + tickOffset; }, 'x2': function (d) { return $$.x(d) + tickOffset; }, 'y1': 0, 'y2': $$.height }; $$.xgrid = $$.main.select('.' + CLASS[_xgrids]).selectAll('.' + CLASS[_xgrid]) .data(xgridData); $$.xgrid.enter().append('line').attr("class", CLASS[_xgrid]); if (!withoutUpdate) { $$.xgrid.attr($$.xgridAttr) .style("opacity", function () { return +d3.select(this).attr(config[__axis_rotated] ? 'y1' : 'x1') === (config[__axis_rotated] ? $$.height : 0) ? 0 : 1; }); } $$.xgrid.exit().remove(); }; c3_chart_internal_fn.updateYGrid = function () { var $$ = this, config = $$.config, CLASS = $$.CLASS; $$.ygrid = $$.main.select('.' + CLASS[_ygrids]).selectAll('.' + CLASS[_ygrid]) .data($$.y.ticks(config[__grid_y_ticks])); $$.ygrid.enter().append('line') .attr('class', CLASS[_ygrid]); $$.ygrid.attr("x1", config[__axis_rotated] ? $$.y : 0) .attr("x2", config[__axis_rotated] ? $$.y : $$.width) .attr("y1", config[__axis_rotated] ? 0 : $$.y) .attr("y2", config[__axis_rotated] ? $$.height : $$.y); $$.ygrid.exit().remove(); $$.smoothLines($$.ygrid, 'grid'); }; c3_chart_internal_fn.redrawGrid = function (duration, withY) { var $$ = this, main = $$.main, config = $$.config, CLASS = $$.CLASS, xgridLine, ygridLine, yv; main.select('line.' + CLASS[_xgridFocus]).style("visibility", "hidden"); if (config[__grid_x_show]) { $$.updateXGrid(); } $$.xgridLines = main.select('.' + CLASS[_xgridLines]).selectAll('.' + CLASS[_xgridLine]) .data(config[__grid_x_lines]); // enter xgridLine = $$.xgridLines.enter().append('g') .attr("class", function (d) { return CLASS[_xgridLine] + (d.class ? ' ' + d.class : ''); }); xgridLine.append('line') .style("opacity", 0); xgridLine.append('text') .attr("text-anchor", "end") .attr("transform", config[__axis_rotated] ? "" : "rotate(-90)") .attr('dx', config[__axis_rotated] ? 0 : -$$.margin.top) .attr('dy', -5) .style("opacity", 0); // udpate // done in d3.transition() of the end of this function // exit $$.xgridLines.exit().transition().duration(duration) .style("opacity", 0) .remove(); // Y-Grid if (withY && config[__grid_y_show]) { $$.updateYGrid(); } if (withY) { $$.ygridLines = main.select('.' + CLASS[_ygridLines]).selectAll('.' + CLASS[_ygridLine]) .data(config[__grid_y_lines]); // enter ygridLine = $$.ygridLines.enter().append('g') .attr("class", function (d) { return CLASS[_ygridLine] + (d.class ? ' ' + d.class : ''); }); ygridLine.append('line') .style("opacity", 0); ygridLine.append('text') .attr("text-anchor", "end") .attr("transform", config[__axis_rotated] ? "rotate(-90)" : "") .attr('dx', config[__axis_rotated] ? 0 : -$$.margin.top) .attr('dy', -5) .style("opacity", 0); // update yv = $$.yv.bind($$); $$.ygridLines.select('line') .transition().duration(duration) .attr("x1", config[__axis_rotated] ? yv : 0) .attr("x2", config[__axis_rotated] ? yv : $$.width) .attr("y1", config[__axis_rotated] ? 0 : yv) .attr("y2", config[__axis_rotated] ? $$.height : yv) .style("opacity", 1); $$.ygridLines.select('text') .transition().duration(duration) .attr("x", config[__axis_rotated] ? 0 : $$.width) .attr("y", yv) .text(function (d) { return d.text; }) .style("opacity", 1); // exit $$.ygridLines.exit().transition().duration(duration) .style("opacity", 0) .remove(); } }; c3_chart_internal_fn.addTransitionForGrid = function (transitions) { var $$ = this, config = $$.config, xv = $$.xv.bind($$); transitions.push($$.xgridLines.select('line').transition() .attr("x1", config[__axis_rotated] ? 0 : xv) .attr("x2", config[__axis_rotated] ? $$.width : xv) .attr("y1", config[__axis_rotated] ? xv : $$.margin.top) .attr("y2", config[__axis_rotated] ? xv : $$.height) .style("opacity", 1)); transitions.push($$.xgridLines.select('text').transition() .attr("x", config[__axis_rotated] ? $$.width : 0) .attr("y", xv) .text(function (d) { return d.text; }) .style("opacity", 1)); }; c3_chart_internal_fn.showXGridFocus = function (selectedData) { var $$ = this, config = $$.config, dataToShow = selectedData.filter(function (d) { return d && isValue(d.value); }), focusEl = $$.main.selectAll('line.' + CLASS[_xgridFocus]), xx = $$.xx.bind($$); if (! config[__tooltip_show]) { return; } // Hide when scatter plot exists if ($$.hasType('scatter') || $$.hasArcType()) { return; } focusEl .style("visibility", "visible") .data([dataToShow[0]]) .attr(config[__axis_rotated] ? 'y1' : 'x1', xx) .attr(config[__axis_rotated] ? 'y2' : 'x2', xx); $$.smoothLines(focusEl, 'grid'); }; c3_chart_internal_fn.hideXGridFocus = function () { this.main.select('line.' + CLASS[_xgridFocus]).style("visibility", "hidden"); }; c3_chart_internal_fn.updateXgridFocus = function () { var $$ = this, config = $$.config; $$.main.select('line.' + CLASS[_xgridFocus]) .attr("x1", config[__axis_rotated] ? 0 : -10) .attr("x2", config[__axis_rotated] ? $$.width : -10) .attr("y1", config[__axis_rotated] ? -10 : 0) .attr("y2", config[__axis_rotated] ? -10 : $$.height); }; c3_chart_internal_fn.generateGridData = function (type, scale) { var $$ = this, gridData = [], xDomain, firstYear, lastYear, i, tickNum = $$.main.select("." + CLASS[_axisX]).selectAll('.tick').size(); if (type === 'year') { xDomain = $$.getXDomain(); firstYear = xDomain[0].getFullYear(); lastYear = xDomain[1].getFullYear(); for (i = firstYear; i <= lastYear; i++) { gridData.push(new Date(i + '-01-01 00:00:00')); } } else { gridData = scale.ticks(10); if (gridData.length > tickNum) { // use only int gridData = gridData.filter(function (d) { return ("" + d).indexOf('.') < 0; }); } } return gridData; }; c3_chart_internal_fn.getGridFilterToRemove = function (params) { return params ? function (line) { var found = false; [].concat(params).forEach(function (param) { if ((('value' in param && line.value === params.value) || ('class' in param && line.class === params.class))) { found = true; } }); return found; } : function () { return true; }; }; c3_chart_internal_fn.removeGridLines = function (params, forX) { var $$ = this, config = $$.config, toRemove = $$.getGridFilterToRemove(params), toShow = function (line) { return !toRemove(line); }, classLines = forX ? CLASS[_xgridLines] : CLASS[_ygridLines], classLine = forX ? CLASS[_xgridLine] : CLASS.ygridLine; $$.main.select('.' + classLines).selectAll('.' + classLine).filter(toRemove) .transition().duration(config[__transition_duration]) .style('opacity', 0).remove(); if (forX) { config[__grid_x_lines] = config[__grid_x_lines].filter(toShow); } else { config[__grid_y_lines] = config[__grid_y_lines].filter(toShow); } }; c3_chart_internal_fn.initTooltip = function () { var $$ = this, config = $$.config, i; $$.tooltip = $$.selectChart .style("position", "relative") .append("div") .style("position", "absolute") .style("pointer-events", "none") .style("z-index", "10") .style("display", "none"); // Show tooltip if needed if (config[__tooltip_init_show]) { if ($$.isTimeSeries() && isString(config[__tooltip_init_x])) { config[__tooltip_init_x] = $$.parseDate(config[__tooltip_init_x]); for (i = 0; i < $$.data.targets[0].values.length; i++) { if (($$.data.targets[0].values[i].x - config[__tooltip_init_x]) === 0) { break; } } config[__tooltip_init_x] = i; } $$.tooltip.html(config[__tooltip_contents].call($$, $$.data.targets.map(function (d) { return $$.addName(d.values[config[__tooltip_init_x]]); }), $$.getXAxisTickFormat(), $$.getYFormat($$.hasArcType()), $$.color)); $$.tooltip.style("top", config[__tooltip_init_position].top) .style("left", config[__tooltip_init_position].left) .style("display", "block"); } }; c3_chart_internal_fn.getTooltipContent = function (d, defaultTitleFormat, defaultValueFormat, color) { var $$ = this, config = $$.config, titleFormat = config[__tooltip_format_title] || defaultTitleFormat, nameFormat = config[__tooltip_format_name] || function (name) { return name; }, valueFormat = config[__tooltip_format_value] || defaultValueFormat, text, i, title, value, name, bgcolor; for (i = 0; i < d.length; i++) { if (! (d[i] && (d[i].value || d[i].value === 0))) { continue; } if (! text) { title = titleFormat ? titleFormat(d[i].x) : d[i].x; text = "
" + title + " | |
---|---|
" + name + " | "; text += "" + value + " | "; text += "