Quite good looking graph derived from d3.js http://c3js.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3015 lines
124 KiB

12 years ago
(function (window) {
'use strict';
12 years ago
var c3 = window.c3 = {};
var d3 = window.d3;
12 years ago
/*
12 years ago
* Generate chart according to config
*/
12 years ago
c3.generate = function (config) {
12 years ago
12 years ago
var c3 = { data : {} },
11 years ago
cache = {};
12 years ago
var EXPANDED = '_expanded_', SELECTED = '_selected_', INCLUDED = '_included_';
12 years ago
/*-- Handle Config --*/
function checkConfig(key, message) {
if (! (key in config)) { throw Error(message); }
12 years ago
}
12 years ago
function getConfig(keys, defaultValue) {
11 years ago
var target = config;
12 years ago
for (var i = 0; i < keys.length; i++) {
if (! (keys[i] in target)) { return defaultValue; }
11 years ago
target = target[keys[i]];
12 years ago
}
11 years ago
return target;
12 years ago
}
12 years ago
// bindto - id to bind the chart
11 years ago
var __bindto = getConfig(['bindto'], '#chart');
12 years ago
var __size_width = getConfig(['size', 'width'], null),
__size_height = getConfig(['size', 'height'], null);
12 years ago
var __padding_left = getConfig(['padding', 'left'], null),
__padding_right = getConfig(['padding', 'right'], null);
var __zoom_enabled = getConfig(['zoom', 'enabled'], false),
__zoom_extent = getConfig(['zoom', 'extent'], null),
__zoom_privileged = getConfig(['zoom', 'privileged'], false);
var __onenter = getConfig(['onenter'], function () {}),
__onleave = getConfig(['onleave'], function () {});
12 years ago
// data - data configuration
11 years ago
checkConfig('data', 'data is required in config');
12 years ago
var __data_x = getConfig(['data', 'x'], null),
__data_xs = getConfig(['data', 'xs'], null),
__data_x_format = getConfig(['data', 'x_format'], '%Y-%m-%d'),
__data_id_converter = getConfig(['data', 'id_converter'], function (id) { return id; }),
__data_names = getConfig(['data', 'names'], {}),
__data_groups = getConfig(['data', 'groups'], []),
__data_axes = getConfig(['data', 'axes'], {}),
__data_type = getConfig(['data', 'type'], null),
__data_types = getConfig(['data', 'types'], {}),
__data_regions = getConfig(['data', 'regions'], {}),
__data_colors = getConfig(['data', 'colors'], {}),
__data_selection_enabled = getConfig(['data', 'selection', 'enabled'], false),
__data_selection_grouped = getConfig(['data', 'selection', 'grouped'], false),
__data_selection_isselectable = getConfig(['data', 'selection', 'isselectable'], function () { return true; });
12 years ago
// subchart
var __subchart_show = getConfig(['subchart', 'show'], false),
__subchart_size_height = __subchart_show ? getConfig(['subchart', 'size', 'height'], 60) : 0;
12 years ago
// color
var __color_pattern = getConfig(['color', 'pattern'], null);
12 years ago
// legend
var __legend_show = getConfig(['legend', 'show'], true),
__legend_item_width = getConfig(['legend', 'item', 'width'], 80), // TODO: auto
__legend_item_onclick = getConfig(['legend', 'item', 'onclick'], function () {});
12 years ago
// axis
var __axis_x_type = getConfig(['axis', 'x', 'type'], 'indexed'),
__axis_x_categories = getConfig(['axis', 'x', 'categories'], []),
__axis_x_tick_centered = getConfig(['axis', 'x', 'tick', 'centered'], false),
__axis_x_tick_format = getConfig(['axis', 'x', 'tick', 'format'], null),
__axis_x_default = getConfig(['axis', 'x', 'default'], null),
11 years ago
__axis_x_label = getConfig(['axis', 'x', 'label'], null),
__axis_y_max = getConfig(['axis', 'y', 'max'], null),
__axis_y_min = getConfig(['axis', 'y', 'min'], null),
__axis_y_center = getConfig(['axis', 'y', 'center'], null),
11 years ago
__axis_y_label = getConfig(['axis', 'y', 'label'], null),
__axis_y_inner = getConfig(['axis', 'y', 'inner'], false),
__axis_y_tick_format = getConfig(['axis', 'y', 'tick', 'format'], function (d) { return d; }),
__axis_y_padding = getConfig(['axis', 'y', 'padding'], null),
__axis_y_ticks = getConfig(['axis', 'y', 'ticks'], 10),
__axis_y2_show = getConfig(['axis', 'y2', 'show'], false),
__axis_y2_max = getConfig(['axis', 'y2', 'max'], null),
__axis_y2_min = getConfig(['axis', 'y2', 'min'], null),
__axis_y2_center = getConfig(['axis', 'y2', 'center'], null),
// not used
11 years ago
// __axis_y2_label = getConfig(['axis', 'y2', 'text'], null),
__axis_y2_inner = getConfig(['axis', 'y2', 'inner'], false),
__axis_y2_tick_format = getConfig(['axis', 'y2', 'tick', 'format'], function (d) { return d; }),
__axis_y2_padding = getConfig(['axis', 'y2', 'padding'], null),
__axis_y2_ticks = getConfig(['axis', 'y2', 'ticks'], 10),
__axis_rotated = getConfig(['axis', 'rotated'], false);
12 years ago
// grid
var __grid_x_show = getConfig(['grid', 'x', 'show'], false),
__grid_x_type = getConfig(['grid', 'x', 'type'], 'tick'),
__grid_x_lines = getConfig(['grid', 'x', 'lines'], null),
__grid_y_show = getConfig(['grid', 'y', 'show'], false),
// not used
// __grid_y_type = getConfig(['grid', 'y', 'type'], 'tick'),
__grid_y_lines = getConfig(['grid', 'y', 'lines'], null);
12 years ago
// point - point of each data
var __point_show = getConfig(['point', 'show'], true),
__point_r = __point_show ? getConfig(['point', 'r'], 2.5) : 0,
__point_focus_line_enabled = getConfig(['point', 'focus', 'line', 'enabled'], true),
__point_focus_expand_enabled = getConfig(['point', 'focus', 'expand', 'enabled'], true),
__point_focus_expand_r = getConfig(['point', 'focus', 'expand', 'r'], __point_focus_expand_enabled ? 4 : __point_r),
__point_select_r = getConfig(['point', 'focus', 'select', 'r'], 8),
__point_onclick = getConfig(['point', 'onclick'], function () {}),
__point_onselected = getConfig(['point', 'onselected'], function () {}),
__point_onunselected = getConfig(['point', 'onunselected'], function () {});
12 years ago
// arc
var __arc_label_fomat = getConfig(['arc', 'label', 'format'], function (d, ratio) { return (100 * ratio).toFixed(1) + "%"; }),
__arc_title = getConfig(['arc', 'title'], "");
12 years ago
// region - region to change style
11 years ago
var __regions = getConfig(['regions'], []);
12 years ago
// tooltip - show when mouseover on each data
var __tooltip_enabled = getConfig(['tooltip', 'enabled'], true),
__tooltip_contents = getConfig(['tooltip', 'contents'], function (d) {
var title = getXAxisTickFormat()(d[0].x),
text = "<table class='-tooltip'><tr><th colspan='2'>" + title + "</th></tr>", i, value, name;
for (i = 0; i < d.length; i++) {
if (! d[i] || !(d[i].value || d[i].value === 0)) { continue; }
value = isDefined(d[i].value) ? (Math.round(d[i].value * 100) / 100).toFixed(2) : '-';
name = d[i].name;
text += "<tr class='-tooltip-name-" + d[i].id + "'><td class='name'><span style='background-color:" + color(d[i].id) + "'></span>" + name + "</td><td class='value'>" + value + "</td></tr>";
12 years ago
}
11 years ago
return text + "</table>";
}),
__tooltip_init_show = getConfig(['tooltip', 'init', 'show'], false),
__tooltip_init_x = getConfig(['tooltip', 'init', 'x'], 0),
__tooltip_init_position = getConfig(['tooltip', 'init', 'position'], {top: '0px', left: '50px'});
12 years ago
12 years ago
/*-- Set Variables --*/
var clipId = __bindto.replace('#', '') + '-clip',
11 years ago
clipPath = "url(#" + clipId + ")";
12 years ago
var isTimeSeries = (__axis_x_type === 'timeseries'),
11 years ago
isCategorized = (__axis_x_type === 'categorized'),
isCustomX = !isTimeSeries && (__data_x || __data_xs);
12 years ago
var dragStart = null, dragging = false, cancelClick = false;
12 years ago
11 years ago
var legendHeight = __legend_show ? 40 : 0;
12 years ago
11 years ago
var color = generateColor(__data_colors, __color_pattern);
var defaultTimeFormat = (function () {
11 years ago
var formats = [
[d3.time.format("%Y/%-m/%-d"), function () { return true; }],
[d3.time.format("%-m/%-d"), function (d) { return d.getMonth(); }],
[d3.time.format("%-m/%-d"), function (d) { return d.getDate() !== 1; }],
[d3.time.format("%-m/%-d"), function (d) { return d.getDay() && d.getDate() !== 1; }],
[d3.time.format("%I %p"), function (d) { return d.getHours(); }],
[d3.time.format("%I:%M"), function (d) { return d.getMinutes(); }],
[d3.time.format(":%S"), function (d) { return d.getSeconds(); }],
[d3.time.format(".%L"), function (d) { return d.getMilliseconds(); }]
11 years ago
];
return function (date) {
11 years ago
var i = formats.length - 1, f = formats[i];
while (!f[1](date)) { f = formats[--i]; }
11 years ago
return f[0](date);
};
11 years ago
})();
12 years ago
/*-- Set Chart Params --*/
12 years ago
var margin, margin2, margin3, width, width2, height, height2, height3, currentWidth, currentHeight;
var radius, radiusExpanded, innerRadius, svgArc, svgArcExpanded, svgArcExpandedSub, pie;
var xMin, xMax, yMin, yMax, subXMin, subXMax, subYMin, subYMax;
var x, y, y2, subX, subY, subY2, xAxis, yAxis, yAxis2, subXAxis;
var xOrient = __axis_rotated ? "left" : "bottom",
yOrient = __axis_rotated ? (__axis_y_inner ? "top" : "bottom") : (__axis_y_inner ? "right" : "left"),
y2Orient = __axis_rotated ? (__axis_y2_inner ? "bottom" : "top") : (__axis_y2_inner ? "left" : "right"),
subXOrient = __axis_rotated ? "left" : "bottom";
11 years ago
var translate = {
main : function () { return "translate(" + margin.left + "," + margin.top + ")"; },
context : function () { return "translate(" + margin2.left + "," + margin2.top + ")"; },
legend : function () { return "translate(" + margin3.left + "," + margin3.top + ")"; },
y2 : function () { return "translate(" + (__axis_rotated ? 0 : width) + "," + (__axis_rotated ? 10 : 0) + ")"; },
x : function () { return "translate(0," + height + ")"; },
subx : function () { return "translate(0," + (__axis_rotated ? 0 : height2) + ")"; },
arc: function () { return "translate(" + width / 2 + "," + height / 2 + ")"; }
};
11 years ago
/*-- Define Functions --*/
//-- Sizes --//
// TODO: configurabale
var rotated_padding_left = 40, rotated_padding_right = 20;
function updateSizes() {
currentWidth = getCurrentWidth();
currentHeight = getCurrentHeight();
// for main
margin = {
top: 0,
left: (__axis_rotated ? __subchart_size_height + rotated_padding_right : 0) + getCurrentPaddingLeft(),
bottom: 20 + (__axis_rotated ? 0 : __subchart_size_height) + legendHeight,
right: getCurrentPaddingRight()
};
width = currentWidth - margin.left - margin.right;
height = currentHeight - margin.top - margin.bottom;
// for context
margin2 = {
top: __axis_rotated ? margin.top : (currentHeight - __subchart_size_height - legendHeight),
left: __axis_rotated ? rotated_padding_left : margin.left,
bottom: 20 + legendHeight,
right: NaN
};
width2 = __axis_rotated ? margin.left - rotated_padding_left - rotated_padding_right : width;
height2 = __axis_rotated ? height : currentHeight - margin2.top - margin2.bottom;
// for legend
margin3 = {
top: currentHeight - legendHeight,
right: NaN,
bottom: 0,
left: margin.left
};
height3 = currentHeight - margin3.top - margin3.bottom;
radiusExpanded = height / 2;
radius = radiusExpanded * 0.95;
innerRadius = hasDountType(c3.data.targets) ? radius * 0.6 : 0;
}
function getCurrentWidth() {
11 years ago
return __size_width === null ? getParentWidth() : __size_width;
}
function getCurrentHeight() {
11 years ago
var h = __size_height === null ? getParentHeight() : __size_height;
return h > 0 ? h : 320;
}
function getCurrentPaddingLeft() {
if (__padding_left) {
return __padding_left;
} else {
return __axis_y_inner ? 1 : getDefaultPaddingWithAxisId('y');
}
}
function getCurrentPaddingRight() {
if (__padding_right) {
return __padding_right;
} else if (__axis_y2_show) {
return __axis_y2_inner || __axis_rotated ? 1 : getDefaultPaddingWithAxisId('y2');
} else {
return 20;
}
}
function getDefaultPaddingWithAxisId() {
return 40; // TODO: calc automatically
}
function getParentWidth() {
return +d3.select(__bindto).style("width").replace('px', ''); // TODO: if rotated, use height
11 years ago
}
function getParentHeight() {
return +d3.select(__bindto).style('height').replace('px', ''); // TODO: if rotated, use width
11 years ago
}
function getXAxisClipWidth() {
return width + 2 + margin.left + margin.right;
}
function getXAxisClipHeight() {
return 40;
}
function getYAxisClipWidth() {
return margin.left + 20;
}
function getYAxisClipHeight() {
return height - margin.top + 2;
}
function getEventRectWidth() {
var base = __axis_rotated ? height : width,
ratio = getXDomainRatio(),
maxDataCount = getMaxDataCount();
return maxDataCount > 1 ? (base * ratio) / (maxDataCount - 1) : base;
}
11 years ago
//-- Scales --//
function updateScales() {
// update edges
xMin = __axis_rotated ? 1 : 0;
11 years ago
xMax = __axis_rotated ? height : width;
yMin = __axis_rotated ? 0 : height;
11 years ago
yMax = __axis_rotated ? width : 1;
subXMin = xMin;
subXMax = xMax;
subYMin = __axis_rotated ? 0 : height2;
subYMax = __axis_rotated ? width2 : 1;
// update scales
x = getX(xMin, xMax, isDefined(x) ? x.domain() : undefined, function () { return xAxis.tickOffset(); });
y = getY(yMin, yMax, isDefined(y) ? y.domain() : undefined);
y2 = getY(yMin, yMax, isDefined(y2) ? y2.domain() : undefined);
subX = getX(xMin, xMax, isDefined(orgXDomain) ? orgXDomain : undefined, function (d) { return d % 1 === 0 ? subXAxis.tickOffset() : 0; });
subY = getY(subYMin, subYMax);
subY2 = getY(subYMin, subYMax);
11 years ago
// update axes
xAxis = getXAxis(x, xOrient);
yAxis = getYAxis(y, yOrient);
yAxis2 = getYAxis(y2, y2Orient);
subXAxis = getXAxis(subX, subXOrient);
// update for arc
svgArc = getSvgArc();
svgArcExpanded = getSvgArcExpanded();
svgArcExpandedSub = getSvgArcExpanded(0.98);
}
function getX(min, max, domain, offset) {
var scale = ((isTimeSeries) ? d3.time.scale() : d3.scale.linear()).range([min, max]);
// Set function and values for c3
scale.orgDomain = function () { return scale.domain(); };
if (isDefined(domain)) { scale.domain(domain); }
if (isUndefined(offset)) { offset = function () { return 0; }; }
// Define customized scale if categorized axis
if (isCategorized) {
var _scale = scale, key;
scale = function (d) { return _scale(d) + offset(d); };
for (key in _scale) {
scale[key] = _scale[key];
}
scale.orgDomain = function () {
return _scale.domain();
};
scale.domain = function (domain) {
if (!arguments.length) {
domain = _scale.domain();
return [domain[0], domain[1] + 1];
}
_scale.domain(domain);
return scale;
};
}
return scale;
}
function getY(min, max) {
return d3.scale.linear().range([min, max]);
}
function getYScale(id) {
11 years ago
return getAxisId(id) === 'y2' ? y2 : y;
}
function getSubYScale(id) {
11 years ago
return getAxisId(id) === 'y2' ? subY2 : subY;
}
11 years ago
//-- Axes --//
function getXAxis(scale, orient) {
var axis = (isCategorized ? categoryAxis() : d3.svg.axis()).scale(scale).orient(orient);
// Set tick format
axis.tickFormat(getXAxisTickFormat());
// Set categories
if (isCategorized) {
axis.categories(__axis_x_categories).tickCentered(__axis_x_tick_centered);
} else {
// TODO: fix
axis.tickOffset = function () { return 0; };
}
return axis;
}
function getYAxis(scale, orient) {
return d3.svg.axis().scale(scale).orient(orient);
}
function getAxisId(id) {
11 years ago
return id in __data_axes ? __data_axes[id] : 'y';
}
function getXAxisTickFormat() {
var tickFormat = isTimeSeries ? defaultTimeFormat : isCategorized ? category : function (x) { return x; };
if (__axis_x_tick_format) {
tickFormat = typeof __axis_x_tick_format === 'function' ? __axis_x_tick_format : isTimeSeries ? function (date) { return d3.time.format(__axis_x_tick_format)(date); } : tickFormat;
}
return tickFormat;
}
//-- Arc --//
pie = d3.layout.pie().value(function (d) {
return d.values.reduce(function (a, b) { return a + b.value; }, 0);
});
function updateAngle(d) {
var found = false;
pie(c3.data.targets).forEach(function (t) {
if (! found && t.data.id === d.data.id) {
found = true;
d = t;
return;
}
});
return found ? d : null;
}
function getSvgArc() {
var arc = d3.svg.arc().outerRadius(radius).innerRadius(innerRadius),
newArc = function (d, withoutUpdate) {
var updated;
if (withoutUpdate) { return arc(d); } // for interpolate
updated = updateAngle(d);
return updated ? arc(updated) : "M 0 0";
};
// TODO: extends all function
newArc.centroid = arc.centroid;
return newArc;
}
function getSvgArcExpanded(rate) {
var arc = d3.svg.arc().outerRadius(radiusExpanded * (rate ? rate : 1)).innerRadius(innerRadius);
return function (d) {
var updated = updateAngle(d);
return updated ? arc(updated) : "M 0 0";
};
}
function getArc(d, withoutUpdate) {
return isArcType(d.data) ? svgArc(d, withoutUpdate) : "M 0 0";
}
function transformForArcLable(d) {
var updated = updateAngle(d), c, x, y, h, translate = "";
if (updated) {
c = svgArc.centroid(updated);
x = c[0], y = c[1], h = Math.sqrt(x * x + y * y);
translate = "translate(" + ((x / h) * radius * 0.8) + ',' + ((y / h) * radius * 0.8) + ")";
}
return translate;
}
function getArcRatio(d) {
return (d.endAngle - d.startAngle) / (Math.PI * 2);
}
function textForArcLable(d) {
return __arc_label_fomat(d, getArcRatio(d));
}
function expandArc(targetId, withoutFadeOut) {
var target = svg.selectAll('.chart-arc.target' + (targetId ? '-' + targetId : '')),
noneTargets = svg.selectAll('.-arc').filter(function (data) { return data.data.id !== targetId; });
target.selectAll('path')
.transition().duration(50)
.attr("d", svgArcExpanded)
.transition().duration(100)
.attr("d", svgArcExpandedSub)
.each(function (d) {
if (isDountType(d.data)) {
// callback here
}
});
if (!withoutFadeOut) {
noneTargets.style("opacity", 0.3);
}
}
function unexpandArc(targetId) {
var target = svg.selectAll('.chart-arc.target' + (targetId ? '-' + targetId : ''));
target.selectAll('path')
.transition().duration(50)
.attr("d", svgArc);
svg.selectAll('.-arc')
.style("opacity", 1);
}
12 years ago
//-- Domain --//
function getYDomainMin(targets) {
var ys = getValuesAsIdKeyed(targets), j, k, baseId, id, hasNegativeValue;
if (__data_groups.length > 0) {
hasNegativeValue = hasNegativeValueInTargets(targets);
for (j = 0; j < __data_groups.length; j++) {
baseId = __data_groups[j][0];
if (hasNegativeValue && ys[baseId]) {
ys[baseId].forEach(function (v, i) {
ys[baseId][i] = v < 0 ? v : 0;
});
}
for (k = 1; k < __data_groups[j].length; k++) {
id = __data_groups[j][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]); }));
12 years ago
}
function getYDomainMax(targets) {
var ys = getValuesAsIdKeyed(targets), j, k, baseId, id, hasPositiveValue;
if (__data_groups.length > 0) {
hasPositiveValue = hasPositiveValueInTargets(targets);
for (j = 0; j < __data_groups.length; j++) {
baseId = __data_groups[j][0];
if (hasPositiveValue && ys[baseId]) {
ys[baseId].forEach(function (v, i) {
ys[baseId][i] = v > 0 ? v : 0;
});
}
for (k = 1; k < __data_groups[j].length; k++) {
id = __data_groups[j][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]); }));
12 years ago
}
function getYDomain(axisId) {
var yTargets = getTargets(function (d) { return getAxisId(d.id) === axisId; }),
yMin = axisId === 'y2' ? __axis_y2_min : __axis_y_min,
yMax = axisId === 'y2' ? __axis_y2_max : __axis_y_max,
yDomainMin = (yMin) ? yMin : getYDomainMin(yTargets),
yDomainMax = (yMax) ? yMax : getYDomainMax(yTargets),
padding = Math.abs(yDomainMax - yDomainMin) * 0.1,
padding_top = padding, padding_bottom = padding,
11 years ago
center = axisId === 'y2' ? __axis_y2_center : __axis_y_center;
if (center) {
var yDomainAbs = Math.max(Math.abs(yDomainMin), Math.abs(yDomainMax));
11 years ago
yDomainMax = yDomainAbs - center;
yDomainMin = center - yDomainAbs;
12 years ago
}
if (axisId === 'y' && __axis_y_padding) {
padding_top = __axis_y_padding.top ? __axis_y_padding.top : padding;
padding_bottom = __axis_y_padding.bottom ? __axis_y_padding.bottom : padding;
}
if (axisId === 'y2' && __axis_y2_padding) {
padding_top = __axis_y2_padding.top ? __axis_y2_padding.top : padding;
padding_bottom = __axis_y2_padding.bottom ? __axis_y2_padding.bottom : padding;
}
// Bar chart with only positive values should be 0-based
if (hasBarType(yTargets) && !hasNegativeValueInTargets(yTargets)) {
padding_bottom = yDomainMin;
}
return [yDomainMin - padding_bottom, yDomainMax + padding_top];
12 years ago
}
function getXDomainRatio(isSub) {
return isSub ? 1 : diffDomain(orgXDomain) / diffDomain(x.domain());
12 years ago
}
function getXDomainMin(targets) {
return d3.min(targets, function (t) { return d3.min(t.values, function (v) { return v.x; }); });
}
function getXDomainMax(targets) {
return d3.max(targets, function (t) { return d3.max(t.values, function (v) { return v.x; }); });
}
function getXDomain(targets) {
var xDomain = [getXDomainMin(targets), getXDomainMax(targets)],
firstX = xDomain[0], lastX = xDomain[1],
padding = isCategorized ? 0 : Math.abs(firstX - lastX) * 0.01,
min = isTimeSeries ? new Date(firstX.getTime() - padding) : firstX - padding,
max = isTimeSeries ? new Date(lastX.getTime() + padding) : lastX + padding;
return [min, max];
}
function diffDomain(d) {
return d[1] - d[0];
}
12 years ago
//-- Cache --//
12 years ago
function hasCaches(ids) {
for (var i = 0; i < ids.length; i++) {
if (! (ids[i] in cache)) { return false; }
12 years ago
}
11 years ago
return true;
12 years ago
}
function addCache(id, target) {
11 years ago
cache[id] = cloneTarget(target);
12 years ago
}
function getCaches(ids) {
11 years ago
var targets = [];
for (var i = 0; i < ids.length; i++) {
if (ids[i] in cache) { targets.push(cloneTarget(cache[ids[i]])); }
12 years ago
}
11 years ago
return targets;
12 years ago
}
11 years ago
//-- Regions --//
function regionStart(d) {
11 years ago
return ('start' in d) ? x(isTimeSeries ? parseDate(d.start) : d.start) : 0;
}
function regionWidth(d) {
11 years ago
var start = regionStart(d),
end = ('end' in d) ? x(isTimeSeries ? parseDate(d.end) : d.end) : width,
w = end - start;
return (w < 0) ? 0 : w;
}
12 years ago
//-- Data --//
function isX(key) {
return (__data_x && key === __data_x) || (__data_xs && hasValue(__data_xs, key));
}
function isNotX(key) {
return !isX(key);
}
function getXKey(id) {
return __data_x ? __data_x : __data_xs ? __data_xs[id] : null;
}
function getXValue(id, i) {
return id in c3.data.x && c3.data.x[id] && c3.data.x[id][i] ? c3.data.x[id][i] : i;
}
function addXs(xs) {
Object.keys(xs).forEach(function (id) {
__data_xs[id] = xs[id];
});
}
function addName(data) {
var name;
if (data) {
name = __data_names[data.id];
data.name = name ? name : data.id;
}
return data;
}
function convertRowsToData(rows) {
11 years ago
var keys = rows[0], new_row = {}, new_rows = [], i, j;
12 years ago
for (i = 1; i < rows.length; i++) {
11 years ago
new_row = {};
12 years ago
for (j = 0; j < rows[i].length; j++) {
11 years ago
new_row[keys[j]] = rows[i][j];
12 years ago
}
11 years ago
new_rows.push(new_row);
12 years ago
}
11 years ago
return new_rows;
12 years ago
}
function convertColumnsToData(columns) {
11 years ago
var new_rows = [], i, j, key;
12 years ago
for (i = 0; i < columns.length; i++) {
11 years ago
key = columns[i][0];
12 years ago
for (j = 1; j < columns[i].length; j++) {
if (isUndefined(new_rows[j - 1])) {
new_rows[j - 1] = {};
12 years ago
}
new_rows[j - 1][key] = columns[i][j];
12 years ago
}
}
11 years ago
return new_rows;
12 years ago
}
function convertDataToTargets(data) {
var ids = d3.keys(data[0]).filter(isNotX), xs = d3.keys(data[0]).filter(isX), targets;
12 years ago
// check "x" is defined if timeseries
if (isTimeSeries && xs.length === 0) {
window.alert('data.x or data.xs must be specified when axis.x.type == "timeseries"');
11 years ago
return [];
}
// save x for update data by load
if (isCustomX) {
ids.forEach(function (id) {
var xKey = getXKey(id);
if (xs.indexOf(xKey) >= 0) {
c3.data.x[id] = data.map(function (d) { return d[xKey]; });
} else { // if no x included, use same x of current will be used
c3.data.x[id] = c3.data.x[Object.keys(c3.data.x)[0]];
}
});
}
12 years ago
// convert to target
targets = ids.map(function (id) {
11 years ago
var convertedId = __data_id_converter(id);
12 years ago
return {
id: convertedId,
id_org: id,
values: data.map(function (d, i) {
var x, xKey = getXKey(id);
if (isTimeSeries) {
x = parseDate(d[xKey]);
}
else if (isCustomX) {
x = d[xKey] ? d[xKey] : getXValue(id, i);
}
else {
x = i;
}
d.x = x; // used by event-rect
return {x: x, value: d[id] !== null && !isNaN(d[id]) ? +d[id] : null, id: convertedId};
12 years ago
})
11 years ago
};
});
12 years ago
// 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++;
});
});
// set target types
if (__data_type) {
setTargetType(getTargetIds(targets).filter(function (id) { return ! (id in __data_types); }), __data_type);
}
12 years ago
// cache as original id keyed
targets.forEach(function (d) {
11 years ago
addCache(d.id_org, d);
});
12 years ago
11 years ago
return targets;
12 years ago
}
function cloneTarget(target) {
return {
id : target.id,
id_org : target.id_org,
values : target.values.map(function (d) {
11 years ago
return {x: d.x, value: d.value, id: d.id};
})
11 years ago
};
}
11 years ago
function getPrevX(i) {
return i > 0 && c3.data.targets[0].values[i - 1] ? c3.data.targets[0].values[i - 1].x : undefined;
11 years ago
}
function getNextX(i) {
return i < getMaxDataCount() - 1 ? c3.data.targets[0].values[i + 1].x : undefined;
11 years ago
}
function getMaxDataCount() {
return d3.max(c3.data.targets, function (t) { return t.values.length; });
12 years ago
}
function getMaxDataCountTarget() {
var length = c3.data.targets.length, max = 0, maxTarget;
if (length > 1) {
c3.data.targets.forEach(function (t) {
if (t.values.length > max) {
maxTarget = t;
max = t.values.length;
}
});
} else {
maxTarget = length ? c3.data.targets[0] : null;
}
return maxTarget;
}
function getTargetIds(targets) {
11 years ago
targets = isUndefined(targets) ? c3.data.targets : targets;
return targets.map(function (d) { return d.id; });
}
function hasTarget(id) {
11 years ago
var ids = getTargetIds(), i;
12 years ago
for (i = 0; i < ids.length; i++) {
if (ids[i] === id) {
return true;
}
}
11 years ago
return false;
}
function getTargets(filter) {
11 years ago
return isDefined(filter) ? c3.data.targets.filter(filter) : c3.data.targets;
}
function getValuesAsIdKeyed(targets) {
var ys = {};
targets.forEach(function (t) {
ys[t.id] = [];
t.values.forEach(function (v) {
ys[t.id].push(v.value);
});
});
return ys;
}
function checkValueInTargets(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;
}
function hasNegativeValueInTargets(targets) {
return checkValueInTargets(targets, function (v) { return v < 0; });
}
function hasPositiveValueInTargets(targets) {
return checkValueInTargets(targets, function (v) { return v > 0; });
}
function category(i) {
11 years ago
return i < __axis_x_categories.length ? __axis_x_categories[i] : i;
12 years ago
}
function classShapes(d) { return "-shapes -shapes-" + d.id; }
function classLine(d) { return classShapes(d) + " -line -line-" + d.id; }
function classCircles(d) { return classShapes(d) + " -circles -circles-" + d.id; }
function classBars(d) { return classShapes(d) + " -bars -bars-" + d.id; }
function classArc(d) { return classShapes(d.data) + " -arc -arc-" + d.data.id; }
function classArea(d) { return classShapes(d) + " -area -area-" + d.id; }
function classShape(d, i) { return "-shape -shape-" + i; }
function classCircle(d, i) { return classShape(d, i) + " -circle -circle-" + i; }
function classBar(d, i) { return classShape(d, i) + " -bar -bar-" + i; }
function classRegion(d, i) { return 'region region-' + i + ' ' + ('classes' in d ? [].concat(d.classes).join(' ') : ''); }
function classEvent(d, i) { return "event-rect event-rect-" + i; }
12 years ago
function opacityCircle(d) {
return d.value ? isScatterType(d) ? 0.5 : 1 : 0;
}
function xx(d) {
11 years ago
return x(d.x);
12 years ago
}
function xv(d) {
return x(isTimeSeries ? parseDate(d.value) : d.value);
12 years ago
}
function yv(d) {
11 years ago
return y(d.value);
12 years ago
}
function subxx(d) {
return subX(d.x);
}
12 years ago
function findSameXOfValues(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;
}
function findClosestOfValues(values, pos, _min, _max) { // MEMO: values must be sorted by x
var 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[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) {
// Get candidates that has same min and max index
candidates = [];
if (values[min].x) {
candidates = candidates.concat(findSameXOfValues(values, min));
}
if (values[max].x) {
candidates = candidates.concat(findSameXOfValues(values, max));
}
// Determine the closest and return
return findClosest(candidates, pos);
}
return findClosestOfValues(values, pos, min, max);
}
function findClosestFromTargets(targets, pos) {
var 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);
}
function findClosest(values, pos) {
var minDist, closest;
values.forEach(function (v) {
var d = dist(v, pos);
if (d < minDist || ! minDist) {
minDist = d;
closest = v;
}
});
return closest;
}
//-- Tooltip --//
function showTooltip(selectedData, mouse) {
var tWidth, tHeight;
var svgLeft, tooltipLeft, tooltipRight, tooltipTop, chartRight;
if (! __tooltip_enabled) { return; }
// don't show tooltip when no data
if (selectedData.filter(function (d) { return d && d.value; }).length === 0) { return; }
// Construct tooltip
tooltip.html(__tooltip_contents(selectedData))
.style("visibility", "hidden")
.style("display", "block");
// Get tooltip dimensions
tWidth = tooltip.property('offsetWidth');
tHeight = tooltip.property('offsetHeight');
// Determin tooltip position
if (__axis_rotated) {
tooltipLeft = mouse[0];
} else {
svgLeft = svg.property('offsetLeft');
tooltipLeft = svgLeft + getCurrentPaddingLeft() + x(selectedData[0].x) + 20;
tooltipRight = tooltipLeft + tWidth;
chartRight = svgLeft + getCurrentWidth() - getCurrentPaddingRight();
if (tooltipRight > chartRight) {
tooltipLeft -= tWidth + 30;
}
}
tooltipTop = mouse[1] + 15 + tHeight < getCurrentHeight() ? mouse[1] + 15 : mouse[1] - tHeight;
// Set tooltip
// todo get rid of magic numbers
tooltip
.style("top", tooltipTop + "px")
.style("left", tooltipLeft + 'px')
.style("visibility", "visible");
}
11 years ago
function hideTooltip() {
tooltip.style("display", "none");
}
function showXGridFocus(data) {
if (! __tooltip_enabled) { return; }
11 years ago
// Hide when scatter plot exists
if (hasScatterType(c3.data.targets) || hasArcType(c3.data.targets)) { return; }
main.selectAll('line.xgrid-focus')
.style("visibility", "visible")
.data([data])
.attr(__axis_rotated ? 'y1' : 'x1', xx)
.attr(__axis_rotated ? 'y2' : 'x2', xx);
}
11 years ago
function hideXGridFocus() {
main.select('line.xgrid-focus').style("visibility", "hidden");
}
//-- Circle --//
function circleX(d) {
return d.x || d.x === 0 ? x(d.x) : null;
}
function circleY(d) {
11 years ago
return getYScale(d.id)(d.value);
}
12 years ago
//-- Bar --//
function getBarIndices() {
11 years ago
var indices = {}, i = 0, j, k;
getTargets(isBarType).forEach(function (d) {
for (j = 0; j < __data_groups.length; j++) {
if (__data_groups[j].indexOf(d.id) < 0) { continue; }
for (k = 0; k < __data_groups[j].length; k++) {
if (__data_groups[j][k] in indices) {
11 years ago
indices[d.id] = indices[__data_groups[j][k]];
break;
}
}
}
if (isUndefined(indices[d.id])) { indices[d.id] = i++; }
});
indices.__max__ = i - 1;
11 years ago
return indices;
}
function getBarX(barW, barTargetsNum, barIndices, isSub) {
11 years ago
var scale = isSub ? subX : x;
if (! barTargetsNum) { return function () { return 0; }; }
return function (d) {
11 years ago
var barIndex = d.id in barIndices ? barIndices[d.id] : 0;
return d.x || d.x === 0 ? scale(d.x) - barW * (barTargetsNum / 2 - barIndex) : 0;
11 years ago
};
}
function getBarY(isSub) {
return function (d) {
var scale = isSub ? getSubYScale(d.id) : getYScale(d.id);
return scale(d.value);
};
}
function getBarOffset(barIndices, isSub) {
11 years ago
var indicesIds = Object.keys(barIndices);
return function (d, i) {
var scale = isSub ? getSubYScale(d.id) : getYScale(d.id),
y0 = scale(0), offset = y0;
getTargets(isBarType).forEach(function (t) {
if (t.id === d.id || barIndices[t.id] !== barIndices[d.id]) { return; }
if (indicesIds.indexOf(t.id) < indicesIds.indexOf(d.id) && t.values[i].value * d.value > 0) {
offset += scale(t.values[i].value) - y0;
}
11 years ago
});
return offset;
11 years ago
};
}
function getBarW(axis, barTargetsNum, isSub) {
var barW;
if (isCategorized) {
11 years ago
barW = barTargetsNum ? (axis.tickOffset() * 2 * 0.6) / barTargetsNum : 0;
} else {
barW = (((__axis_rotated ? height : width) * getXDomainRatio(isSub)) / (getMaxDataCount() - 1)) * 0.6;
}
return barW;
}
12 years ago
//-- Type --//
function setTargetType(targets, type) {
11 years ago
var targetIds = isUndefined(targets) ? getTargetIds() : targets;
if (typeof targetIds === 'string') { targetIds = [targetIds]; }
for (var i = 0; i < targetIds.length; i++) {
11 years ago
__data_types[targetIds[i]] = type;
}
}
function hasType(targets, type) {
11 years ago
var has = false;
targets.forEach(function (t) {
if (__data_types[t.id] === type) { has = true; }
if (!(t.id in __data_types) && type === 'line') { has = true; }
11 years ago
});
return has;
}
/* not used
function hasLineType(targets) {
11 years ago
return hasType(targets, 'line');
}
*/
function hasBarType(targets) {
11 years ago
return hasType(targets, 'bar');
}
function hasScatterType(targets) {
return hasType(targets, 'scatter');
}
function hasPieType(targets) {
return hasType(targets, 'pie');
}
function hasDountType(targets) {
return hasType(targets, 'dount');
}
function hasArcType(targets) {
return hasPieType(targets) || hasDountType(targets);
}
function isLineType(d) {
11 years ago
var id = (typeof d === 'string') ? d : d.id;
return !(id in __data_types) || __data_types[id] === 'line' || __data_types[id] === 'spline' || __data_types[id] === 'area' || __data_types[id] === 'area-spline';
12 years ago
}
function isSplineType(d) {
11 years ago
var id = (typeof d === 'string') ? d : d.id;
return __data_types[id] === 'spline' || __data_types[id] === 'area-spline';
12 years ago
}
function isBarType(d) {
11 years ago
var id = (typeof d === 'string') ? d : d.id;
return __data_types[id] === 'bar';
12 years ago
}
function isScatterType(d) {
var id = (typeof d === 'string') ? d : d.id;
return __data_types[id] === 'scatter';
}
function isPieType(d) {
var id = (typeof d === 'string') ? d : d.id;
return __data_types[id] === 'pie';
}
function isDountType(d) {
var id = (typeof d === 'string') ? d : d.id;
return __data_types[id] === 'dount';
}
function isArcType(d) {
return isPieType(d) || isDountType(d);
}
/* not used
function lineData(d) {
11 years ago
return isLineType(d) ? d.values : [];
}
function scatterData(d) {
return isScatterType(d) ? d.values : [];
}
*/
function barData(d) {
11 years ago
return isBarType(d) ? d.values : [];
}
function lineOrScatterData(d) {
return isLineType(d) || isScatterType(d) ? d.values : [];
}
12 years ago
//-- Color --//
function generateColor(_colors, _pattern) {
12 years ago
var ids = [],
colors = _colors,
pattern = (_pattern !== null) ? _pattern : ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']; //same as d3.scale.category10()
12 years ago
return function (id) {
// if specified, choose that color
if (id in colors) { return _colors[id]; }
12 years ago
12 years ago
// if not specified, choose from pattern
if (ids.indexOf(id) === -1) {
11 years ago
ids.push(id);
12 years ago
}
11 years ago
return pattern[ids.indexOf(id) % pattern.length];
};
12 years ago
}
12 years ago
//-- Date --//
function parseDate(date) {
var parsedDate;
if (!date) { throw Error(date + " can not be parsed as d3.time with format " + __data_x_format + ". Maybe 'x' of this data is not defined. See data.x or data.xs option."); }
parsedDate = d3.time.format(__data_x_format).parse(date);
if (!parsedDate) { throw Error("Failed to parse '" + date + "' with format " + __data_x_format); }
return parsedDate;
}
12 years ago
//-- Util --//
function isWithinCircle(_this, _r) {
11 years ago
var mouse = d3.mouse(_this), d3_this = d3.select(_this);
var 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;
12 years ago
}
function isWithinBar(_this) {
11 years ago
var mouse = d3.mouse(_this), d3_this = d3.select(_this);
var x = d3_this.attr("x") * 1, y = d3_this.attr("y") * 1, w = d3_this.attr("width") * 1;
11 years ago
var sx = x - 10, ex = x + w + 10, ey = y - 10;
return sx < mouse[0] && mouse[0] < ex && ey < mouse[1];
}
function isWithinRegions(x, regions) {
11 years ago
var i;
12 years ago
for (i = 0; i < regions.length; i++) {
if (regions[i].start < x && x <= regions[i].end) { return true; }
12 years ago
}
11 years ago
return false;
12 years ago
}
12 years ago
function hasValue(dict, value) {
var found = false;
Object.keys(dict).forEach(function (key) {
if (dict[key] === value) { found = true; }
});
return found;
}
function dist(data, pos) {
return Math.pow(x(data.x) - pos[0], 2) + Math.pow(y(data.value) - pos[1], 2);
}
12 years ago
//-- Selection --//
function selectPoint(target, d, i) {
11 years ago
__point_onselected(target, d);
12 years ago
// add selected-circle on low layer g
main.select(".selected-circles-" + d.id).selectAll('.selected-circle-' + i)
.data([d])
.enter().append('circle')
.attr("class", function () { return "selected-circle selected-circle-" + i; })
.attr("cx", __axis_rotated ? circleY : circleX)
.attr("cy", __axis_rotated ? circleX : circleY)
.attr("stroke", function () { return color(d.id); })
12 years ago
.attr("r", __point_select_r * 1.4)
.transition().duration(100)
11 years ago
.attr("r", __point_select_r);
12 years ago
}
function unselectPoint(target, d, i) {
11 years ago
__point_onunselected(target, d);
12 years ago
// remove selected-circle from low layer g
main.select(".selected-circles-" + d.id).selectAll(".selected-circle-" + i)
.transition().duration(100).attr('r', 0)
11 years ago
.remove();
12 years ago
}
function togglePoint(selected, target, d, i) {
11 years ago
(selected) ? selectPoint(target, d, i) : unselectPoint(target, d, i);
12 years ago
}
12 years ago
function selectBar() {
}
function unselectBar() {
}
function toggleBar(selected, target, d, i) {
11 years ago
(selected) ? selectBar(target, d, i) : unselectBar(target, d, i);
}
function filterRemoveNull(data) {
return data.filter(function (d) { return d.value !== null; });
}
12 years ago
//-- Shape --//
12 years ago
11 years ago
function getCircles(i, id) {
return (id ? main.selectAll('.-circles-' + id) : main).selectAll('.-circle' + (i || i === 0 ? '-' + i : ''));
}
function expandCircles(i, id) {
getCircles(i, id)
.classed(EXPANDED, true)
.attr('r', __point_focus_expand_r);
}
function unexpandCircles(i) {
getCircles(i)
.filter(function () { return d3.select(this).classed(EXPANDED); })
.classed(EXPANDED, false)
.attr('r', __point_r);
}
function getBars(i) {
return main.selectAll(".-bar" + (i || i === 0 ? '-' + i : ''));
}
function expandBars(i) {
getBars(i).classed(EXPANDED, false);
}
function unexpandBars(i) {
getBars(i).classed(EXPANDED, false);
}
11 years ago
// For main region
var lineOnMain = (function () {
var line = d3.svg.line()
.x(__axis_rotated ? function (d) { return getYScale(d.id)(d.value); } : xx)
.y(__axis_rotated ? xx : function (d) { return getYScale(d.id)(d.value); });
11 years ago
return function (d) {
var data = filterRemoveNull(d.values), x0, y0;
11 years ago
if (isLineType(d)) {
isSplineType(d) ? line.interpolate("cardinal") : line.interpolate("linear");
return __data_regions[d.id] ? lineWithRegions(data, x, getYScale(d.id), __data_regions[d.id]) : line(data);
11 years ago
} else {
x0 = x(data[0].x);
y0 = getYScale(d.id)(data[0].value);
return __axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
11 years ago
}
};
})();
var areaOnMain = (function () {
var area;
if (__axis_rotated) {
area = d3.svg.area()
.x0(function (d) { return getYScale(d.id)(0); })
.x1(function (d) { return getYScale(d.id)(d.value); })
.y(xx);
} else {
area = d3.svg.area()
.x(xx)
.y0(function (d) { return getYScale(d.id)(0); })
.y1(function (d) { return getYScale(d.id)(d.value); });
}
return function (d) {
var data = filterRemoveNull(d.values), x0, y0;
if (hasType([d], 'area') || hasType([d], 'area-spline')) {
isSplineType(d) ? area.interpolate("cardinal") : area.interpolate("linear");
return area(data);
} else {
x0 = x(data[0].x);
y0 = getYScale(d.id)(data[0].value);
return __axis_rotated ? "M " + y0 + " " + x0 : "M " + x0 + " " + y0;
}
};
})();
11 years ago
// For brush region
var lineOnSub = (function () {
var line = d3.svg.line()
.x(__axis_rotated ? function (d) { return getSubYScale(d.id)(d.value); } : subxx)
.y(__axis_rotated ? subxx : function (d) { return getSubYScale(d.id)(d.value); });
11 years ago
return function (d) {
var data = filterRemoveNull(d.values);
return isLineType(d) ? line(data) : "M " + subX(data[0].x) + " " + getSubYScale(d.id)(data[0].value);
11 years ago
};
})();
function lineWithRegions(d, x, y, _regions) {
11 years ago
var prev = -1, i, j;
var s = "M", sWithRegion;
var xp, yp, dx, dy, dd, diff;
11 years ago
var xValue, yValue;
var regions = [];
12 years ago
// Check start/end of regions
if (isDefined(_regions)) {
for (i = 0; i < _regions.length; i++) {
regions[i] = {};
if (isUndefined(_regions[i].start)) {
11 years ago
regions[i].start = d[0].x;
} else {
regions[i].start = isTimeSeries ? parseDate(_regions[i].start) : _regions[i].start;
12 years ago
}
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;
12 years ago
}
}
}
// Set scales
xValue = __axis_rotated ? function (d) { return y(d.value); } : function (d) { return x(d.x); };
yValue = __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)) + " " + y(yp(j)) + " " + x(xp(j + diff)) + " " + y(yp(j + diff));
};
}
12 years ago
// Generate
12 years ago
for (i = 0; i < d.length; i++) {
12 years ago
// Draw as normal
if (isUndefined(regions) || ! isWithinRegions(d[i].x, regions)) {
s += " " + xValue(d[i]) + " " + yValue(d[i]);
12 years ago
}
// Draw with region // TODO: Fix for horizotal charts
12 years ago
else {
xp = getX(d[i - 1].x, d[i].x);
yp = getY(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;
var diffx2 = diff * 2;
12 years ago
for (j = diff; j <= 1; j += diffx2) {
s += sWithRegion(d[i - 1], d[i], j, diff);
12 years ago
}
}
11 years ago
prev = d[i].x;
12 years ago
}
11 years ago
return s;
12 years ago
}
12 years ago
11 years ago
//-- Define brush/zoom -//
12 years ago
var brush = d3.svg.brush().on("brush", redrawForBrush);
var zoom = d3.behavior.zoom().on("zoomstart", function () { zoom.altDomain = d3.event.sourceEvent.altKey ? x.orgDomain() : null; }).on("zoom", __zoom_enabled ? redrawForZoom : null);
12 years ago
11 years ago
// define functions for c3
brush.update = function () {
if (context) { context.select('.x.brush').call(this); }
11 years ago
return this;
};
brush.scale = function (scale) {
return __axis_rotated ? this.y(scale) : this.x(scale);
};
zoom.scale = function (scale) {
return __axis_rotated ? this.y(scale) : this.x(scale);
};
zoom.orgScaleExtent = function () {
var extent = __zoom_extent ? __zoom_extent : [1, 10];
return [extent[0], Math.max(getMaxDataCount() / extent[1], extent[1])];
};
zoom.updateScaleExtent = function () {
var ratio = diffDomain(x.orgDomain()) / diffDomain(orgXDomain), extent = this.orgScaleExtent();
this.scaleExtent([extent[0] * ratio, extent[1] * ratio]);
return this;
};
11 years ago
12 years ago
/*-- Draw Chart --*/
11 years ago
// for svg elements
var svg, defs, main, context, legend, tooltip, selectChart;
12 years ago
11 years ago
// for brush area culculation
var orgXDomain;
11 years ago
function init(data) {
11 years ago
var eventRect, grid, xgridLines, ygridLines;
var i;
12 years ago
selectChart = d3.select(__bindto);
if (selectChart.empty()) {
window.alert('No bind element found. Check the selector specified by "bindto" and existance of that element. Default "bindto" is "#chart".');
return;
} else {
selectChart.html("");
}
// Init data as targets
c3.data.x = {};
c3.data.targets = convertDataToTargets(data);
12 years ago
// TODO: set names if names not specified
11 years ago
// Init sizes and scales
updateSizes();
updateScales();
// Set domains for each scale
x.domain(d3.extent(getXDomain(c3.data.targets)));
y.domain(getYDomain('y'));
y2.domain(getYDomain('y2'));
11 years ago
subX.domain(x.domain());
subY.domain(y.domain());
subY2.domain(y2.domain());
12 years ago
11 years ago
// Set axes attrs
xAxis.ticks(data.length < 10 ? data.length : 10);
yAxis.ticks(__axis_y_ticks).outerTickSize(0).tickFormat(__axis_y_tick_format);
yAxis2.ticks(__axis_y2_ticks).outerTickSize(0).tickFormat(__axis_y2_tick_format);
11 years ago
// Save original x domain for zoom update
orgXDomain = x.domain();
11 years ago
// Set initialized scales to brush and zoom
brush.scale(subX);
if (__zoom_enabled) { zoom.scale(x); }
11 years ago
11 years ago
/*-- Basic Elements --*/
// Define svgs
svg = d3.select(__bindto).append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.on('mouseenter', __onenter)
.on('mouseleave', __onleave);
11 years ago
// Define defs
defs = svg.append("defs");
defs.append("clipPath")
.attr("id", clipId)
.append("rect")
.attr("y", margin.top)
.attr("width", width)
.attr("height", height - margin.top);
11 years ago
defs.append("clipPath")
.attr("id", "xaxis-clip")
.append("rect")
.attr("x", -1 - margin.left)
11 years ago
.attr("y", -20)
.attr("width", getXAxisClipWidth)
.attr("height", getXAxisClipHeight);
11 years ago
defs.append("clipPath")
.attr("id", "yaxis-clip")
.append("rect")
.attr("x", -margin.left + 1)
.attr("y", margin.top - 1)
.attr("width", getYAxisClipWidth)
.attr("height", getYAxisClipHeight);
11 years ago
// Define regions
main = svg.append("g").attr("transform", translate.main);
context = __subchart_show ? svg.append("g").attr("transform", translate.context) : null;
legend = __legend_show ? svg.append("g").attr("transform", translate.legend) : null;
// Define tooltip
tooltip = d3.select(__bindto)
.style("position", "relative")
.append("div")
.style("position", "absolute")
.style("z-index", "10")
.style("display", "none");
11 years ago
12 years ago
/*-- Main Region --*/
12 years ago
// Add Axis
main.append("g")
.attr("class", "x axis")
.attr("clip-path", __axis_rotated ? "" : "url(#xaxis-clip)")
.attr("transform", translate.x)
11 years ago
.call(__axis_rotated ? yAxis : xAxis)
.append("text")
.attr("class", "-axis-x-label")
11 years ago
.attr("x", width)
.attr("dy", "-.5em")
.style("text-anchor", "end")
.text(__axis_x_label);
main.append("g")
.attr("class", "y axis")
.attr("clip-path", __axis_rotated ? "url(#yaxis-clip)" : "")
.call(__axis_rotated ? xAxis : yAxis)
.append("text")
.attr("transform", "rotate(-90)")
11 years ago
.attr("dy", "1.2em")
.attr("dx", "-.5em")
.style("text-anchor", "end")
11 years ago
.text(__axis_y_label);
if (__axis_y2_show) {
main.append("g")
.attr("class", "y2 axis")
.attr("transform", translate.y2)
.call(yAxis2);
}
// Grids
12 years ago
grid = main.append('g')
12 years ago
.attr("clip-path", clipPath)
11 years ago
.attr('class', 'grid');
12 years ago
// X-Grid
if (__grid_x_show) {
11 years ago
grid.append("g").attr("class", "xgrids");
12 years ago
}
if (__grid_x_lines) {
11 years ago
xgridLines = grid.append('g')
12 years ago
.attr("class", "xgrid-lines")
12 years ago
.selectAll('.xgrid-line')
12 years ago
.data(__grid_x_lines)
.enter().append('g')
11 years ago
.attr("class", "xgrid-line");
11 years ago
xgridLines.append('line')
.attr("class", function (d) { return "" + d['class']; });
11 years ago
xgridLines.append('text')
.attr("class", function (d) { return "" + d['class']; })
12 years ago
.attr("text-anchor", "end")
.attr("transform", __axis_rotated ? "" : "rotate(-90)")
.attr('dx', __axis_rotated ? 0 : -margin.top)
11 years ago
.attr('dy', -5)
.text(function (d) { return d.text; });
12 years ago
}
if (__point_focus_line_enabled) {
grid.append('g')
.attr("class", "xgrid-focus")
.append('line')
.attr('class', 'xgrid-focus')
.attr("x1", __axis_rotated ? 0 : -10)
11 years ago
.attr("x2", __axis_rotated ? width : -10)
.attr("y1", __axis_rotated ? -10 : margin.top)
11 years ago
.attr("y2", __axis_rotated ? -10 : height);
12 years ago
}
// Y-Grid
if (__grid_y_show) {
11 years ago
grid.append('g').attr('class', 'ygrids');
12 years ago
}
if (__grid_y_lines) {
11 years ago
ygridLines = grid.append('g')
12 years ago
.attr('class', 'ygrid-lines')
12 years ago
.selectAll('ygrid-line')
12 years ago
.data(__grid_y_lines)
11 years ago
.enter().append('g')
.attr("class", "ygrid-line");
ygridLines.append('line')
.attr("class", function (d) { return "" + d['class']; });
ygridLines.append('text')
.attr("class", function (d) { return "" + d['class']; })
.attr("text-anchor", "end")
.attr("transform", __axis_rotated ? "rotate(-90)" : "")
.attr('dx', __axis_rotated ? 0 : -margin.top)
.attr('dy', -5)
.text(function (d) { return d.text; });
12 years ago
}
// Area
11 years ago
main.append('g')
.attr("clip-path", clipPath)
11 years ago
.attr("class", "regions");
12 years ago
// Define g for chart area
main.append('g')
.attr("clip-path", clipPath)
.attr('class', 'chart');
12 years ago
12 years ago
// Cover whole with rects for events
eventRect = main.select('.chart').append("g")
12 years ago
.attr("class", "event-rects")
.style('fill-opacity', 0)
.style('cursor', __zoom_enabled ? __axis_rotated ? 'ns-resize' : 'ew-resize' : null);
// Define g for bar chart area
main.select(".chart").append("g")
.attr("class", "chart-bars");
// Define g for line chart area
main.select(".chart").append("g")
.attr("class", "chart-lines");
// Define g for arc chart area
main.select(".chart").append("g")
.attr("class", "chart-arcs")
.attr("transform", translate.arc)
.append('text')
.attr('class', 'chart-arcs-title')
.style("text-anchor", "middle")
.text(__arc_title);
if (__zoom_enabled) { // TODO: __zoom_privileged here?
// if zoom privileged, insert rect to forefront
main.insert('rect', __zoom_privileged ? null : 'g.grid')
.attr('class', 'zoom-rect')
.attr('width', width)
.attr('height', height)
.style('opacity', 0)
.style('cursor', __axis_rotated ? 'ns-resize' : 'ew-resize')
.call(zoom).on("dblclick.zoom", null);
}
// Set default extent if defined
if (__axis_x_default !== null) {
brush.extent(typeof __axis_x_default !== 'function' ? __axis_x_default : __axis_x_default(getXDomain()));
}
/*-- Context Region --*/
if (__subchart_show) {
// Define g for chart area
context.append('g')
.attr("clip-path", clipPath)
.attr('class', 'chart');
// Define g for bar chart area
context.select(".chart").append("g")
.attr("class", "chart-bars");
// Define g for line chart area
context.select(".chart").append("g")
.attr("class", "chart-lines");
// Add extent rect for Brush
context.append("g")
.attr("clip-path", clipPath)
.attr("class", "x brush")
.call(brush)
.selectAll("rect")
.attr(__axis_rotated ? "width" : "height", __axis_rotated ? width2 : height2);
// ATTENTION: This must be called AFTER chart added
// Add Axis
context.append("g")
.attr("class", "x axis")
.attr("transform", translate.subx)
.attr("clip-path", __axis_rotated ? "url(#yaxis-clip)" : "")
.call(subXAxis);
}
/*-- Legend Region --*/
if (__legend_show) { updateLegend(c3.data.targets); }
// Set targets
updateTargets(c3.data.targets);
// Draw with targets
redraw({withTransition: false, withUpdateXDomain: true});
// Show tooltip if needed
if (__tooltip_init_show) {
if (isTimeSeries && typeof __tooltip_init_x === 'string') {
__tooltip_init_x = parseDate(__tooltip_init_x);
for (i = 0; i < c3.data.targets[0].values.length; i++) {
if ((c3.data.targets[0].values[i].x - __tooltip_init_x) === 0) { break; }
}
__tooltip_init_x = i;
}
tooltip.html(__tooltip_contents(c3.data.targets.map(function (d) {
return addName(d.values[__tooltip_init_x]);
})));
tooltip.style("top", __tooltip_init_position.top)
.style("left", __tooltip_init_position.left)
.style("display", "block");
}
// Bind resize event
if (window.onresize == null) {
window.onresize = generateResize();
}
if (window.onresize.add) {
window.onresize.add(resize);
}
}
function generateEventRectsForSingleX(eventRectEnter) {
eventRectEnter.append("rect")
.attr("class", classEvent)
11 years ago
.style("cursor", __data_selection_enabled && __data_selection_grouped ? "pointer" : null)
.on('mouseover', function (_, i) {
if (dragging) { return; } // do nothing if dragging
if (hasArcType(c3.data.targets)) { return; }
12 years ago
var selectedData = c3.data.targets.map(function (d) { return addName(d.values[i]); });
var j, newData;
12 years ago
// Sort selectedData as names order
if (Object.keys(__data_names).length > 0) {
11 years ago
newData = [];
12 years ago
for (var id in __data_names) {
12 years ago
for (j = 0; j < selectedData.length; j++) {
12 years ago
if (selectedData[j].id === id) {
11 years ago
newData.push(selectedData[j]);
selectedData.shift(j);
break;
12 years ago
}
}
}
11 years ago
selectedData = newData.concat(selectedData); // Add remained
12 years ago
}
11 years ago
// Expand shapes if needed
if (__point_focus_expand_enabled) { expandCircles(i); }
expandBars(i);
12 years ago
// Show xgrid focus line
showXGridFocus(selectedData[0]);
12 years ago
})
.on('mouseout', function (_, i) {
if (hasArcType(c3.data.targets)) { return; }
11 years ago
hideXGridFocus();
hideTooltip();
// Undo expanded shapes
unexpandCircles(i);
unexpandBars();
12 years ago
})
.on('mousemove', function (_, i) {
var selectedData;
if (dragging) { return; } // do nothing when dragging
if (hasArcType(c3.data.targets)) { return; }
// Show tooltip
selectedData = c3.data.targets.map(function (d) {
return addName(d.values[i]);
});
showTooltip(selectedData, d3.mouse(this));
if (! __data_selection_enabled) { return; }
if (__data_selection_grouped) { return; } // nothing to do when grouped
12 years ago
main.selectAll('.-shape-' + i)
.filter(function (d) { return __data_selection_isselectable(d); })
.each(function () {
var _this = d3.select(this).classed(EXPANDED, true);
if (this.nodeName === 'circle') { _this.attr('r', __point_focus_expand_r); }
svg.select('.event-rect-' + i).style('cursor', null);
})
.filter(function () {
11 years ago
var _this = d3.select(this);
if (this.nodeName === 'circle') {
11 years ago
return isWithinCircle(this, __point_select_r);
}
else if (this.nodeName === 'rect') {
11 years ago
return isWithinBar(this, _this.attr('x'), _this.attr('y'));
}
12 years ago
})
.each(function () {
11 years ago
var _this = d3.select(this);
if (! _this.classed(EXPANDED)) {
_this.classed(EXPANDED, true);
if (this.nodeName === 'circle') { _this.attr('r', __point_select_r); }
12 years ago
}
svg.select('.event-rect-' + i).style('cursor', 'pointer');
11 years ago
});
12 years ago
})
.on('click', function (_, i) {
if (hasArcType(c3.data.targets)) { return; }
if (cancelClick) {
cancelClick = false;
return;
}
main.selectAll('.-shape-' + i).each(function (d) { selectShape(this, d, i); });
12 years ago
})
.call(
d3.behavior.drag().origin(Object)
.on('drag', function () { drag(d3.mouse(this)); })
.on('dragstart', function () { dragstart(d3.mouse(this)); })
.on('dragend', function () { dragend(); })
11 years ago
)
.call(zoom).on("dblclick.zoom", null);
}
12 years ago
function generateEventRectsForMultipleXs(eventRectEnter) {
eventRectEnter.append('rect')
.attr('x', 0)
.attr('y', 0)
.attr('width', width)
.attr('height', height)
.attr('class', "event-rect")
11 years ago
.on('mouseout', function () {
if (hasArcType(c3.data.targets)) { return; }
11 years ago
hideXGridFocus();
hideTooltip();
unexpandCircles();
})
.on('mousemove', function () {
11 years ago
var mouse, closest, selectedData;
11 years ago
if (dragging) { return; } // do nothing when dragging
if (hasArcType(c3.data.targets)) { return; }
11 years ago
mouse = d3.mouse(this);
closest = findClosestFromTargets(c3.data.targets, mouse);
// show tooltip when cursor is close to some point
11 years ago
selectedData = [addName(closest)];
showTooltip(selectedData, mouse);
// expand points
if (__point_focus_expand_enabled) {
11 years ago
unexpandCircles();
expandCircles(closest.index, closest.id);
}
12 years ago
// Show xgrid focus line
showXGridFocus(selectedData[0]);
12 years ago
// Show cursor as pointer if point is close to mouse position
if (dist(closest, mouse) < 100) {
svg.select('.event-rect').style('cursor', 'pointer');
} else {
svg.select('.event-rect').style('cursor', null);
}
})
.on('click', function () {
var mouse, closest;
if (hasArcType(c3.data.targets)) { return; }
mouse = d3.mouse(this);
closest = findClosestFromTargets(c3.data.targets, mouse);
12 years ago
// select if selection enabled
if (dist(closest, mouse) < 100) {
main.select('.-circles-' + closest.id).select('.-circle-' + closest.index).each(function () {
selectShape(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(); })
)
.call(zoom).on("dblclick.zoom", null);
}
12 years ago
function selectShape(target, d, i) {
var _this = d3.select(target),
isSelected = _this.classed(SELECTED);
var isWithin = false, toggle;
if (target.nodeName === 'circle') {
isWithin = isWithinCircle(target, __point_select_r * 1.5);
toggle = togglePoint;
12 years ago
}
else if (target.nodeName === 'rect') {
isWithin = isWithinBar(target);
toggle = toggleBar;
}
if (__data_selection_grouped || isWithin) {
if (__data_selection_enabled && __data_selection_isselectable(d)) {
_this.classed(SELECTED, !isSelected);
toggle(!isSelected, _this, d, i);
}
__point_onclick(d, _this); // TODO: should be __data_onclick
}
}
12 years ago
function drag(mouse) {
var sx, sy, mx, my, minX, maxX, minY, maxY;
if (hasArcType(c3.data.targets)) { return; }
if (! __data_selection_enabled) { return; } // do nothing if not selectable
if (__zoom_enabled && ! zoom.altDomain) { return; } // skip if zoomable because of conflict drag dehavior
sx = dragStart[0];
sy = dragStart[1];
mx = mouse[0];
my = mouse[1];
minX = Math.min(sx, mx);
maxX = Math.max(sx, mx);
minY = (__data_selection_grouped) ? margin.top : Math.min(sy, my);
maxY = (__data_selection_grouped) ? height : Math.max(sy, my);
main.select('.dragarea')
.attr('x', minX)
.attr('y', minY)
.attr('width', maxX - minX)
.attr('height', maxY - minY);
11 years ago
// TODO: binary search when multiple xs
main.selectAll('.-shapes').selectAll('.-shape')
.filter(function (d) { return __data_selection_isselectable(d); })
.each(function (d, i) {
var _this = d3.select(this),
isSelected = _this.classed(SELECTED),
isIncluded = _this.classed(INCLUDED),
_x, _y, _w, toggle, isWithin = false;
if (this.nodeName === 'circle') {
_x = _this.attr("cx") * 1;
_y = _this.attr("cy") * 1;
toggle = togglePoint;
isWithin = minX < _x && _x < maxX && minY < _y && _y < maxY;
}
else if (this.nodeName === 'rect') {
_x = _this.attr("x") * 1;
_y = _this.attr("y") * 1;
_w = _this.attr('width') * 1;
toggle = toggleBar;
isWithin = minX < _x + _w && _x < maxX && _y < maxY;
}
if (isWithin ^ isIncluded) {
_this.classed(INCLUDED, !isIncluded);
// TODO: included/unincluded callback here
_this.classed(SELECTED, !isSelected);
toggle(!isSelected, _this, d, i);
}
});
}
12 years ago
function dragstart(mouse) {
if (hasArcType(c3.data.targets)) { return; }
if (! __data_selection_enabled) { return; } // do nothing if not selectable
dragStart = mouse;
main.select('.chart').append('rect')
.attr('class', 'dragarea')
.style('opacity', 0.1);
dragging = true;
// TODO: add callback here
}
function dragend() {
if (hasArcType(c3.data.targets)) { return; }
if (! __data_selection_enabled) { return; } // do nothing if not selectable
main.select('.dragarea')
.transition().duration(100)
.style('opacity', 0)
.remove();
main.selectAll('.-shape')
.classed(INCLUDED, false);
dragging = false;
// TODO: add callback here
12 years ago
}
12 years ago
function redraw(options) {
11 years ago
var xgrid, xgridData, xgridLines, ygrid, ygridLines;
var mainCircle, mainBar, mainRegion, contextBar, eventRectUpdate;
var barIndices = getBarIndices(), barTargetsNum = barIndices.__max__ + 1, maxDataCountTarget;
11 years ago
var rectX, rectW;
var withY, withSubchart, withTransition, withUpdateXDomain, withUpdateOrgXDomain;
var hideAxis = hasArcType(c3.data.targets);
var duration;
11 years ago
options = isDefined(options) ? options : {};
withY = isDefined(options.withY) ? options.withY : true;
withSubchart = isDefined(options.withSubchart) ? options.withSubchart : true;
withTransition = isDefined(options.withTransition) ? options.withTransition : true;
withUpdateXDomain = isDefined(options.withUpdateXDomain) ? options.withUpdateXDomain : false;
withUpdateOrgXDomain = isDefined(options.withUpdateOrgXDomain) ? options.withUpdateOrgXDomain : false;
12 years ago
duration = withTransition ? 250 : 0;
if (withUpdateOrgXDomain) {
x.domain(d3.extent(getXDomain(c3.data.targets)));
orgXDomain = x.domain();
zoom.scale(x).updateScaleExtent();
subX.domain(x.domain());
brush.scale(subX);
}
// ATTENTION: call here to update tickOffset
11 years ago
if (withUpdateXDomain) {
x.domain(brush.empty() ? orgXDomain : brush.extent());
if (__zoom_enabled) { zoom.scale(x).updateScaleExtent(); }
11 years ago
}
y.domain(getYDomain('y'));
y2.domain(getYDomain('y2'));
// axis
main.select(".x.axis").transition().duration(__axis_rotated ? duration : 0).call(__axis_rotated ? yAxis : xAxis).style("opacity", hideAxis ? 0 : 1);
main.select(".y.axis").transition().duration(__axis_rotated ? 0 : duration).call(__axis_rotated ? xAxis : yAxis).style("opacity", hideAxis ? 0 : 1);
main.select(".y2.axis").transition().call(yAxis2).style("opacity", hideAxis ? 0 : 1);
// Update label position
main.select(".x.axis .-axis-x-label").attr("x", width);
// Update sub domain
11 years ago
subY.domain(y.domain());
subY2.domain(y2.domain());
11 years ago
// tooltip
tooltip.style("display", "none");
11 years ago
12 years ago
// grid
11 years ago
main.select('line.xgrid-focus')
.style("visibility", "hidden")
.attr('y2', height);
12 years ago
if (__grid_x_show) {
if (__grid_x_type === 'year') {
11 years ago
xgridData = [];
var xDomain = getXDomain();
var firstYear = xDomain[0].getFullYear();
var lastYear = xDomain[1].getFullYear();
12 years ago
for (var year = firstYear; year <= lastYear; year++) {
11 years ago
xgridData.push(new Date(year + '-01-01 00:00:00'));
12 years ago
}
} else {
11 years ago
xgridData = x.ticks(10);
12 years ago
}
12 years ago
12 years ago
xgrid = main.select('.xgrids').selectAll(".xgrid")
11 years ago
.data(xgridData);
xgrid.enter().append('line').attr("class", "xgrid");
xgrid.attr("x1", __axis_rotated ? 0 : function (d) { return x(d) - xAxis.tickOffset(); })
.attr("x2", __axis_rotated ? width : function (d) { return x(d) - xAxis.tickOffset(); })
.attr("y1", __axis_rotated ? function (d) { return x(d) - xAxis.tickOffset(); } : margin.top)
.attr("y2", __axis_rotated ? function (d) { return x(d) - xAxis.tickOffset(); } : height)
.style("opacity", function () { return +d3.select(this).attr(__axis_rotated ? 'y1' : 'x1') === (__axis_rotated ? height : 0) ? 0 : 1; });
11 years ago
xgrid.exit().remove();
12 years ago
}
if (__grid_x_lines) {
11 years ago
xgridLines = main.selectAll(".xgrid-lines");
xgridLines.selectAll('line')
.transition().duration(duration)
12 years ago
.attr("x1", __axis_rotated ? 0 : xv)
.attr("x2", __axis_rotated ? width : xv)
.attr("y1", __axis_rotated ? xv : margin.top)
11 years ago
.attr("y2", __axis_rotated ? xv : height);
11 years ago
xgridLines.selectAll('text')
12 years ago
.attr("x", __axis_rotated ? width : 0)
11 years ago
.attr("y", xv);
12 years ago
}
12 years ago
// Y-Grid
if (withY && __grid_y_show) {
ygrid = main.select('.ygrids').selectAll(".ygrid")
11 years ago
.data(y.ticks(10));
12 years ago
ygrid.enter().append('line')
11 years ago
.attr('class', 'ygrid');
ygrid.attr("x1", __axis_rotated ? y : 0)
.attr("x2", __axis_rotated ? y : width)
.attr("y1", __axis_rotated ? 0 : y)
.attr("y2", __axis_rotated ? height : y);
11 years ago
ygrid.exit().remove();
12 years ago
}
if (withY && __grid_y_lines) {
11 years ago
ygridLines = main.select('.ygrid-lines');
ygridLines.selectAll('line')
.transition().duration(duration)
.attr("x1", __axis_rotated ? yv : 0)
.attr("x2", __axis_rotated ? yv : width)
.attr("y1", __axis_rotated ? 0 : yv)
.attr("y2", __axis_rotated ? height : yv);
11 years ago
ygridLines.selectAll('text')
.attr("x", __axis_rotated ? 0 : width)
.attr("y", yv);
12 years ago
}
12 years ago
12 years ago
// bars
var drawBar = function (isSub) {
var barW = getBarW(xAxis, barTargetsNum, !!isSub),
x = getBarX(barW, barTargetsNum, barIndices, !!isSub),
y = getBarY(!!isSub),
barOffset = getBarOffset(barIndices, !!isSub),
yScale = isSub ? getSubYScale : getYScale;
return function (d, i) {
var y0 = yScale(d.id)(0),
offset = barOffset(d, i) || y0; // offset is for stacked bar chart
// 4 points that make a bar
var points = [
[x(d), offset],
[x(d), y(d) - (y0 - offset)],
[x(d) + barW, y(d) - (y0 - offset)],
[x(d) + barW, offset]
];
// switch points if axis is rotated, not applicable for sub chart
var indexX = __axis_rotated ? 1 : 0;
var indexY = __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;
};
};
mainBar = main.selectAll('.-bars').selectAll('.-bar')
11 years ago
.data(barData);
mainBar.enter().append('path')
.attr('d', drawBar(false))
.style("stroke", 'none')
.style("opacity", 0)
.style("fill", function (d) { return color(d.id); })
.attr("class", classBar);
mainBar
.transition().duration(duration)
.attr('d', drawBar(false))
.style("opacity", 1);
mainBar.exit().transition().duration(duration)
.style('opacity', 0)
11 years ago
.remove();
12 years ago
// lines and cricles
main.selectAll('.chart-line').select('.-line')
.transition().duration(duration)
11 years ago
.attr("d", lineOnMain);
main.selectAll('.-area')
.transition().duration(duration)
.attr("d", areaOnMain);
mainCircle = main.selectAll('.-circles').selectAll('.-circle')
.data(lineOrScatterData);
mainCircle.enter().append("circle")
.attr("class", classCircle)
.attr("r", __point_r);
mainCircle.transition().duration(duration)
.style('opacity', opacityCircle)
.attr("cx", __axis_rotated ? circleY : circleX)
11 years ago
.attr("cy", __axis_rotated ? circleX : circleY);
mainCircle.exit().remove();
// arc
main.selectAll('.chart-arc').select('.-arc')
.style("opacity", function (d) { return d === this._current ? 0 : 1; })
.transition().duration(duration)
.attrTween("d", function (d) {
var updated = updateAngle(d);
if (! updated) {
return function () { return "M 0 0"; };
}
/*
if (this._current === d) {
this._current = {
startAngle: Math.PI*2,
endAngle: Math.PI*2,
};
}
*/
var i = d3.interpolate(this._current, updated);
this._current = i(0);
return function (t) { return getArc(i(t), true); };
})
.style("opacity", 1);
main.selectAll('.chart-arc').select('text')
.attr("transform", transformForArcLable)
.attr("opacity", 0)
.transition().duration(duration)
.text(textForArcLable)
.attr("opacity", function (d) { return isArcType(d.data) ? 1 : 0; });
12 years ago
// subchart
if (__subchart_show) {
// reflect main chart to extent on subchart if zoomed
if (d3.event !== null && d3.event.type === 'zoom') {
11 years ago
brush.extent(x.orgDomain()).update();
}
// update subchart elements if needed
if (withSubchart) {
11 years ago
// axes
context.select('.x.axis').transition().duration(__axis_rotated ? duration : 0).call(subXAxis);
// extent rect
if (!brush.empty()) {
11 years ago
brush.extent(x.orgDomain()).update();
}
// bars
contextBar = context.selectAll('.-bars').selectAll('.-bar')
.data(barData);
contextBar.enter().append('path')
.attr('d', drawBar(true))
.style("stroke", 'none')
.style("fill", function (d) { return color(d.id); })
.attr("class", classBar);
contextBar
.style("opacity", 0)
.transition().duration(duration)
.attr('d', drawBar(true))
.style('opacity', 1);
contextBar.exit().transition().duration(duration)
.style('opacity', 0)
.remove();
// lines
context.selectAll('.-line')
.transition().duration(duration)
.attr("d", lineOnSub);
}
12 years ago
}
12 years ago
12 years ago
// circles for select
main.selectAll('.selected-circles')
.filter(function (d) { return isBarType(d); })
.selectAll('circle')
11 years ago
.remove();
12 years ago
main.selectAll('.selected-circle')
.transition().duration(duration)
.attr("cx", __axis_rotated ? circleY : circleX)
11 years ago
.attr("cy", __axis_rotated ? circleX : circleY);
12 years ago
12 years ago
// rect for mouseover
if (__data_xs) {
eventRectUpdate = main.select('.event-rects').selectAll('.event-rect')
.data([0]);
// enter : only one rect will be added
generateEventRectsForMultipleXs(eventRectUpdate.enter());
// update
eventRectUpdate
.attr('x', 0)
.attr('y', 0)
.attr('width', width)
.attr('height', height);
// exit : not needed becuase always only one rect exists
} else {
if (isCustomX) {
rectW = function (d, i) {
var prevX = getPrevX(i), nextX = getNextX(i);
return (x(nextX ? nextX : d.x + 50) - x(prevX ? prevX : d.x - 50)) / 2;
};
rectX = function (d, i) {
var prevX = getPrevX(i);
return (x(d.x) + x(prevX ? prevX : d.x - 50)) / 2;
};
} else {
rectW = getEventRectWidth();
rectX = function (d) { return x(d.x) - (rectW / 2); };
}
// Set data
maxDataCountTarget = getMaxDataCountTarget();
main.select(".event-rects")
.datum(maxDataCountTarget ? maxDataCountTarget.values : []);
// Update rects
eventRectUpdate = main.select('.event-rects').selectAll('.event-rect')
.data(function (d) { return d; });
// enter
generateEventRectsForSingleX(eventRectUpdate.enter());
// update
eventRectUpdate
.attr('class', classEvent)
.attr("x", __axis_rotated ? 0 : rectX)
.attr("y", __axis_rotated ? rectX : 0)
.attr("width", __axis_rotated ? width : rectW)
.attr("height", __axis_rotated ? rectW : height);
// exit
eventRectUpdate.exit().remove();
11 years ago
}
// rect for regions
mainRegion = main.select('.regions').selectAll('rect.region')
11 years ago
.data(__regions);
mainRegion.enter().append('rect');
11 years ago
mainRegion
.attr('class', classRegion)
.attr("x", __axis_rotated ? 0 : regionStart)
.attr("y", __axis_rotated ? regionStart : margin.top)
.attr("width", __axis_rotated ? width : regionWidth)
.attr("height", __axis_rotated ? regionWidth : height)
.style("fill-opacity", function (d) { return isDefined(d.opacity) ? d.opacity : 0.1; });
mainRegion.exit().transition().duration(duration)
.style("fill-opacity", 0)
11 years ago
.remove();
12 years ago
}
function redrawForBrush() {
redraw({
withTransition: false,
withY: false,
withSubchart: false,
withUpdateXDomain: true
});
}
11 years ago
function redrawForZoom() {
if (d3.event.sourceEvent.type === 'mousemove' && zoom.altDomain) {
x.domain(zoom.altDomain);
zoom.scale(x).updateScaleExtent();
return;
}
if (isCategorized && x.orgDomain()[0] === orgXDomain[0]) {
x.domain([orgXDomain[0] - 1e-10, x.orgDomain()[1]]);
}
11 years ago
redraw({
withTransition: false,
withY: false,
withSubchart: false
11 years ago
});
if (d3.event.sourceEvent.type === 'mousemove') {
cancelClick = true;
}
11 years ago
}
12 years ago
function generateResize() {
var resizeFunctions = [];
function callResizeFunctions() {
resizeFunctions.forEach(function (f) {
f();
});
}
callResizeFunctions.add = function (f) {
resizeFunctions.push(f);
};
return callResizeFunctions;
}
function resize() {
// Update sizes and scales
updateSizes();
updateScales();
// Set x for brush again because of scale update
brush.scale(subX);
// Set x for zoom again because of scale update
if (__zoom_enabled) { zoom.scale(x); }
// Update sizes
svg.attr('width', currentWidth).attr('height', currentHeight);
svg.select('#' + clipId).select('rect').attr('width', width).attr('height', height);
svg.select('#xaxis-clip').select('rect').attr('width', getXAxisClipWidth);
svg.select('.zoom-rect').attr('width', width).attr('height', height);
// Update main positions
main.select('.x.axis').attr("transform", translate.x);
main.select('.y2.axis').attr("transform", translate.y2);
main.select('.chart-arcs').attr("transform", translate.arc);
// Update context sizes and positions
if (__subchart_show) {
context.attr("transform", translate.context);
context.select('.x.axis').attr("transform", translate.subx);
}
// Update legend positions
if (__legend_show) {
legend.attr("transform", translate.legend);
updateLegend(c3.data.targets, {withTransition: false});
}
// Draw with new sizes & scales
redraw({withTransition: false, withUpdateXDomain: true});
}
function updateTargets(targets) {
var mainLineEnter, mainLineUpdate, mainBarEnter, mainBarUpdate, mainPieEnter, mainPieUpdate;
11 years ago
var contextLineEnter, contextLineUpdate, contextBarEnter, contextBarUpdate;
12 years ago
/*-- Main --*/
//-- Bar --//
mainBarUpdate = main.select('.chart-bars')
.selectAll('.chart-bar')
11 years ago
.data(targets);
mainBarEnter = mainBarUpdate.enter().append('g')
.attr('class', function (d) { return 'chart-bar target target-' + d.id; })
12 years ago
.style("pointer-events", "none")
11 years ago
.style('opacity', 0);
// Bars for each data
mainBarEnter.append('g')
.attr("class", classBars)
.style("fill", function (d) { return color(d.id); })
.style("stroke", function (d) { return color(d.id); })
.style("stroke-width", 0)
.style("cursor", function (d) { return __data_selection_isselectable(d) ? "pointer" : null; });
12 years ago
//-- Line --//
mainLineUpdate = main.select('.chart-lines')
.selectAll('.chart-line')
11 years ago
.data(targets);
mainLineEnter = mainLineUpdate.enter().append('g')
.attr('class', function (d) { return 'chart-line target target-' + d.id; })
.style("pointer-events", "none")
11 years ago
.style('opacity', 0);
12 years ago
// Lines for each data
mainLineEnter.append("path")
.attr("class", classLine)
.style("stroke", function (d) { return color(d.id); });
// Areas
mainLineEnter.append("path")
.attr("class", classArea)
.style("fill", function (d) { return color(d.id); });
12 years ago
// Circles for each data point on lines
mainLineEnter.append('g')
.attr("class", function (d) { return "selected-circles selected-circles-" + d.id; });
mainLineEnter.append('g')
.attr("class", classCircles)
.style("fill", function (d) { return color(d.id); })
.style("cursor", function (d) { return __data_selection_isselectable(d) ? "pointer" : null; });
// Update date for selected circles
targets.forEach(function (t) {
main.selectAll('.selected-circles-' + t.id).selectAll('.selected-circle').each(function (d) {
11 years ago
d.value = t.values[d.x].value;
});
});
// MEMO: can not keep same color...
//mainLineUpdate.exit().remove();
//-- Pie --//
mainPieUpdate = main.select('.chart-arcs')
.selectAll(".chart-arc")
.data(pie(targets));
mainPieEnter = mainPieUpdate.enter().append("g")
.attr("class", function (d) { return 'chart-arc target target-' + d.data.id; })
.style('opacity', 0);
mainPieEnter.append("path")
.attr("class", classArc)
.style("fill", function (d) { return color(d.data.id); })
.style("cursor", function (d) { return __data_selection_isselectable(d) ? "pointer" : null; })
.each(function (d) { this._current = d; })
.on('mouseover', function (d) {
expandArc(d.data.id);
focusLegend(d.data.id);
})
.on('mouseout', function (d) {
unexpandArc(d.data.id);
revertLegend();
});
mainPieEnter.append("text")
.attr("dy", ".35em")
.style("text-anchor", "middle")
.style("pointer-events", "none");
// MEMO: can not keep same color..., but not bad to update color in redraw
//mainPieUpdate.exit().remove();
12 years ago
12 years ago
/*-- Context --*/
if (__subchart_show) {
contextBarUpdate = context.select('.chart-bars')
.selectAll('.chart-bar')
11 years ago
.data(targets);
contextBarEnter = contextBarUpdate.enter().append('g')
.attr('class', function (d) { return 'chart-bar target target-' + d.id; })
11 years ago
.style('opacity', 0);
// Bars for each data
contextBarEnter.append('g')
.attr("class", classBars)
.style("fill", function (d) { return color(d.id); });
12 years ago
//-- Line --//
contextLineUpdate = context.select('.chart-lines')
.selectAll('.chart-line')
11 years ago
.data(targets);
contextLineEnter = contextLineUpdate.enter().append('g')
.attr('class', function (d) { return 'chart-line target target-' + d.id; })
11 years ago
.style('opacity', 0);
12 years ago
// Lines for each data
contextLineEnter.append("path")
.attr("class", classLine)
.style("stroke", function (d) { return color(d.id); });
12 years ago
}
/*-- Legend --*/
if (__legend_show) {
11 years ago
updateLegend(targets);
12 years ago
}
/*-- Show --*/
// Fade-in each chart
svg.selectAll('.target')
12 years ago
.transition()
11 years ago
.style("opacity", 1);
12 years ago
}
12 years ago
function load(targets, done) {
12 years ago
// Update/Add data
c3.data.targets.forEach(function (d) {
12 years ago
for (var i = 0; i < targets.length; i++) {
if (d.id === targets[i].id) {
11 years ago
d.values = targets[i].values;
targets.splice(i, 1);
11 years ago
break;
12 years ago
}
}
11 years ago
});
c3.data.targets = c3.data.targets.concat(targets); // add remained
12 years ago
// Set targets
11 years ago
updateTargets(c3.data.targets);
12 years ago
// Redraw with new targets
redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true});
12 years ago
11 years ago
done();
12 years ago
}
12 years ago
12 years ago
/*-- Draw Legend --*/
function focusLegend(id) {
var legendItem = svg.selectAll('.legend-item'),
isTarget = function (d) { return !id || d === id; },
notTarget = function (d) { return !isTarget(d); };
legendItem.filter(notTarget).transition().duration(100).style('opacity', 0.3);
legendItem.filter(isTarget).transition().duration(100).style('opacity', 1);
}
function defocusLegend(id) {
var legendItem = svg.selectAll('.legend-item'),
isTarget = function (d) { return !id || d === id; },
notTarget = function (d) { return !isTarget(d); };
legendItem.filter(notTarget).transition().duration(100).style('opacity', 1);
legendItem.filter(isTarget).transition().duration(100).style('opacity', 0.3);
}
function revertLegend() {
svg.selectAll('.legend-item')
.transition().duration(100)
.style('opacity', 1);
}
function updateLegend(targets, options) {
11 years ago
var ids = getTargetIds(targets), l;
var padding = width / 2 - __legend_item_width * Object.keys(targets).length / 2;
var withTransition;
options = isUndefined(options) ? {} : options;
withTransition = isDefined(options.withTransition) ? options.withTransition : true;
12 years ago
// Define g for legend area
12 years ago
l = legend.selectAll('.legend-item')
12 years ago
.data(ids)
.enter().append('g')
.attr('class', function (d) { return 'legend-item legend-item-' + d; })
12 years ago
.style('cursor', 'pointer')
.on('click', function (d) {
11 years ago
__legend_item_onclick(d);
12 years ago
})
.on('mouseover', function (d) {
focusLegend(d);
11 years ago
c3.focus(d);
12 years ago
})
.on('mouseout', function () {
revertLegend();
11 years ago
c3.revert();
});
12 years ago
l.append('rect')
.attr("class", "legend-item-event")
12 years ago
.style('fill-opacity', 0)
12 years ago
.attr('x', -200)
.attr('y', function () { return legendHeight / 2 - 16; })
12 years ago
.attr('width', __legend_item_width)
11 years ago
.attr('height', 24);
12 years ago
l.append('rect')
.attr("class", "legend-item-tile")
.style("pointer-events", "none")
.style('fill', function (d) { return color(d); })
12 years ago
.attr('x', -200)
.attr('y', function () { return legendHeight / 2 - 9; })
12 years ago
.attr('width', 10)
11 years ago
.attr('height', 10);
12 years ago
l.append('text')
.text(function (d) { return isDefined(__data_names[d]) ? __data_names[d] : d; })
.style("pointer-events", "none")
12 years ago
.attr('x', -200)
.attr('y', function () { return legendHeight / 2; });
12 years ago
legend.selectAll('rect.legend-item-event')
.data(ids)
.transition().duration(withTransition ? 250 : 0)
.attr('x', function (d, i) { return padding + __legend_item_width * i; });
12 years ago
legend.selectAll('rect.legend-item-tile')
.data(ids)
.transition().duration(withTransition ? 250 : 0)
.attr('x', function (d, i) { return padding + __legend_item_width * i; });
12 years ago
legend.selectAll('text')
.data(ids)
.transition().duration(withTransition ? 250 : 0)
.attr('x', function (d, i) { return padding + __legend_item_width * i + 14; });
12 years ago
}
12 years ago
12 years ago
/*-- Event Handling --*/
function getTargetSelector(target) {
11 years ago
return isDefined(target) ? '.target-' + target : '.target';
12 years ago
}
function isNoneArc(d) {
return hasTarget(d.id);
}
function isArc(d) {
return 'data' in d && hasTarget(d.data.id);
}
12 years ago
12 years ago
c3.focus = function (target) {
var candidates = svg.selectAll(getTargetSelector(target)),
candidatesForNoneArc = candidates.filter(isNoneArc),
candidatesForArc = candidates.filter(isArc);
function focus(targets) {
targets.transition().duration(100).style('opacity', 1);
}
c3.revert();
11 years ago
c3.defocus();
focus(candidatesForNoneArc.classed('focused', true));
focus(candidatesForArc);
if (hasArcType(c3.data.targets)) {
expandArc(target, true);
}
focusLegend(target);
11 years ago
};
12 years ago
12 years ago
c3.defocus = function (target) {
var candidates = svg.selectAll(getTargetSelector(target)),
candidatesForNoneArc = candidates.filter(isNoneArc),
candidatesForArc = candidates.filter(isArc);
function defocus(targets) {
targets.transition().duration(100).style('opacity', 0.3);
}
c3.revert();
defocus(candidatesForNoneArc.classed('focused', false));
defocus(candidatesForArc);
if (hasArcType(c3.data.targets)) {
unexpandArc(target);
}
defocusLegend(target);
11 years ago
};
12 years ago
12 years ago
c3.revert = function (target) {
var candidates = svg.selectAll(getTargetSelector(target)),
candidatesForNoneArc = candidates.filter(isNoneArc),
candidatesForArc = candidates.filter(isArc);
function revert(targets) {
targets.transition().duration(100).style('opacity', 1);
}
revert(candidatesForNoneArc.classed('focused', false));
revert(candidatesForArc);
if (hasArcType(c3.data.targets)) {
unexpandArc(target);
}
revertLegend();
11 years ago
};
12 years ago
12 years ago
c3.show = function (target) {
svg.selectAll(getTargetSelector(target))
12 years ago
.transition()
11 years ago
.style('opacity', 1);
};
12 years ago
12 years ago
c3.hide = function (target) {
svg.selectAll(getTargetSelector(target))
12 years ago
.transition()
11 years ago
.style('opacity', 0);
};
12 years ago
11 years ago
c3.unzoom = function () {
brush.clear().update();
redraw({withUpdateXDomain: true});
};
11 years ago
12 years ago
c3.load = function (args) {
12 years ago
// check args
if (typeof args.done !== 'function') {
args.done = function () {};
12 years ago
}
// update xs if exists
if (args.xs) {
addXs(args.xs);
}
// update categories if exists
if ('categories' in args && isCategorized) {
__axis_x_categories = args.categories;
xAxis.categories(__axis_x_categories);
}
12 years ago
// use cache if exists
12 years ago
if ('cacheIds' in args && hasCaches(args.cacheIds)) {
11 years ago
load(getCaches(args.cacheIds), args.done);
return;
12 years ago
}
// load data
if ('data' in args) {
load(convertDataToTargets(args.data), args.done);
12 years ago
}
else if ('url' in args) {
d3.csv(args.url, function (error, data) {
11 years ago
load(convertDataToTargets(data), args.done);
});
12 years ago
}
else if ('rows' in args) {
11 years ago
load(convertDataToTargets(convertRowsToData(args.rows)), args.done);
12 years ago
}
else if ('columns' in args) {
11 years ago
load(convertDataToTargets(convertColumnsToData(args.columns)), args.done);
12 years ago
}
else {
11 years ago
throw Error('url or rows or columns is required.');
12 years ago
}
11 years ago
};
12 years ago
12 years ago
c3.unload = function (target) {
c3.data.targets = c3.data.targets.filter(function (d) {
return d.id !== target;
11 years ago
});
svg.selectAll('.target-' + target)
12 years ago
.transition()
.style('opacity', 0)
11 years ago
.remove();
12 years ago
if (__legend_show) {
svg.selectAll('.legend-item-' + target).remove();
11 years ago
updateLegend(c3.data.targets);
12 years ago
}
if (c3.data.targets.length > 0) {
redraw({withUpdateOrgXDomain: true, withUpdateXDomain: true});
}
11 years ago
};
12 years ago
12 years ago
c3.selected = function (target) {
11 years ago
var suffix = isDefined(target) ? '-' + target : '';
12 years ago
return d3.merge(
main.selectAll('.-shapes' + suffix).selectAll('.-shape')
.filter(function () { return d3.select(this).classed(SELECTED); })
.map(function (d) { return d.map(function (_d) { return _d.__data__; }); })
11 years ago
);
};
12 years ago
c3.select = function (ids, indices, resetOther) {
if (! __data_selection_enabled) { return; }
main.selectAll('.-shapes').selectAll('.-shape').each(function (d, i) {
var selectShape = (this.nodeName === 'circle') ? selectPoint : selectBar,
11 years ago
unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar;
12 years ago
if (indices.indexOf(i) >= 0) {
if (__data_selection_isselectable(d) && (__data_selection_grouped || isUndefined(ids) || ids.indexOf(d.id) >= 0)) {
selectShape(d3.select(this).classed(SELECTED, true), d, i);
12 years ago
}
} else if (isDefined(resetOther) && resetOther) {
unselectShape(d3.select(this).classed(SELECTED, false), d, i);
12 years ago
}
11 years ago
});
};
12 years ago
c3.unselect = function (ids, indices) {
if (! __data_selection_enabled) { return; }
main.selectAll('.-shapes').selectAll('.-shape').each(function (d, i) {
11 years ago
var unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar;
if (isUndefined(indices) || indices.indexOf(i) >= 0) {
if (__data_selection_isselectable(d) && (__data_selection_grouped || isUndefined(ids) || ids.indexOf(d.id) >= 0)) {
unselectShape(d3.select(this).classed(SELECTED, false), d, i);
12 years ago
}
}
11 years ago
});
};
12 years ago
c3.toLine = function (targets) {
11 years ago
setTargetType(targets, 'line');
redraw();
11 years ago
};
12 years ago
c3.toSpline = function (targets) {
11 years ago
setTargetType(targets, 'spline');
redraw();
11 years ago
};
12 years ago
c3.toBar = function (targets) {
11 years ago
setTargetType(targets, 'bar');
redraw();
11 years ago
};
c3.toScatter = function (targets) {
setTargetType(targets, 'scatter');
redraw();
};
c3.groups = function (groups) {
if (isUndefined(groups)) { return __data_groups; }
11 years ago
__data_groups = groups;
redraw();
11 years ago
return __data_groups;
};
c3.regions = function (regions) {
if (isUndefined(regions)) { return __regions; }
11 years ago
__regions = regions;
redraw();
11 years ago
return __regions;
};
11 years ago
c3.regions.add = function (regions) {
if (isUndefined(regions)) { return __regions; }
11 years ago
__regions = __regions.concat(regions);
redraw();
11 years ago
return __regions;
};
11 years ago
c3.regions.remove = function (classes, options) {
var regionClasses = [].concat(classes);
options = isDefined(options) ? options : {};
regionClasses.forEach(function (cls) {
var regions = svg.selectAll('.' + cls);
if (isDefined(options.duration)) {
11 years ago
regions = regions.transition().duration(options.duration).style('fill-opacity', 0);
}
11 years ago
regions.remove();
__regions = __regions.filter(function (region) {
11 years ago
return region.classes.indexOf(cls) < 0;
});
});
return __regions;
};
c3.data.get = function (id) {
11 years ago
var target = c3.data.getAsTarget(id);
return isDefined(target) ? target.values.map(function (d) { return d.value; }) : undefined;
11 years ago
};
c3.data.getAsTarget = function (id) {
var targets = getTargets(function (d) { return d.id === id; });
11 years ago
return targets.length > 0 ? targets[0] : undefined;
};
c3.destroy = function () {
c3.data.targets = undefined;
c3.data.x = {};
selectChart.html("");
window.onresize = null;
};
12 years ago
/*-- Load data and init chart with defined functions --*/
12 years ago
if ('url' in config.data) {
d3.csv(config.data.url, function (error, data) { init(data); });
12 years ago
}
else if ('rows' in config.data) {
11 years ago
init(convertRowsToData(config.data.rows));
12 years ago
}
else if ('columns' in config.data) {
11 years ago
init(convertColumnsToData(config.data.columns));
12 years ago
}
else {
11 years ago
throw Error('url or rows or columns is required.');
12 years ago
}
11 years ago
return c3;
};
12 years ago
function categoryAxis() {
var scale = d3.scale.linear(), orient = "bottom";
var tickMajorSize = 6, /*tickMinorSize = 6,*/ tickEndSize = 6, tickPadding = 3, tickCentered = false, tickTextNum = 10, tickOffset = 0, tickFormat = null;
var categories = [];
function axisX(selection, x) {
selection.attr("transform", function (d) {
return "translate(" + (x(d) + tickOffset) + ", 0)";
11 years ago
});
12 years ago
}
function axisY(selection, y) {
selection.attr("transform", function (d) {
11 years ago
return "translate(0," + y(d) + ")";
});
12 years ago
}
function scaleExtent(domain) {
11 years ago
var start = domain[0], stop = domain[domain.length - 1];
return start < stop ? [ start, stop ] : [ stop, start ];
12 years ago
}
function generateTicks(domain) {
11 years ago
var ticks = [];
12 years ago
for (var i = Math.ceil(domain[0]); i < domain[1]; i++) {
11 years ago
ticks.push(i);
12 years ago
}
if (ticks.length > 0 && ticks[0] > 0) {
ticks.unshift(ticks[0] - (ticks[1] - ticks[0]));
12 years ago
}
11 years ago
return ticks;
12 years ago
}
function shouldShowTickText(ticks, i) {
return ticks.length < tickTextNum || i % Math.ceil(ticks.length / tickTextNum) === 0;
12 years ago
}
function category(i) {
11 years ago
return i < categories.length ? categories[i] : i;
12 years ago
}
function formattedCategory(i) {
var c = category(i);
return tickFormat ? tickFormat(c) : c;
}
12 years ago
function axis(g) {
g.each(function () {
11 years ago
var g = d3.select(this);
var ticks = generateTicks(scale.domain());
var tick = g.selectAll(".tick.major").data(ticks, String),
tickEnter = tick.enter().insert("g", "path").attr("class", "tick major").style("opacity", 1e-6),
tickExit = d3.transition(tick.exit()).style("opacity", 1e-6).remove(),
tickUpdate = d3.transition(tick).style("opacity", 1),
tickTransform,
tickX;
var range = scale.rangeExtent ? scale.rangeExtent() : scaleExtent(scale.range()),
path = g.selectAll(".domain").data([ 0 ]);
path.enter().append("path").attr("class", "domain");
var pathUpdate = d3.transition(path);
11 years ago
var scale1 = scale.copy(), scale0 = this.__chart__ || scale1;
this.__chart__ = scale1;
tickEnter.append("line");
tickEnter.append("text");
var lineEnter = tickEnter.select("line"), lineUpdate = tickUpdate.select("line"), text = tick.select("text"), textEnter = tickEnter.select("text"), textUpdate = tickUpdate.select("text");
tickOffset = (scale1(1) - scale1(0)) / 2;
11 years ago
tickX = tickCentered ? 0 : tickOffset;
12 years ago
switch (orient) {
case "bottom":
{
11 years ago
tickTransform = axisX;
lineEnter.attr("y2", tickMajorSize);
textEnter.attr("y", Math.max(tickMajorSize, 0) + tickPadding);
lineUpdate.attr("x1", tickX).attr("x2", tickX).attr("y2", tickMajorSize);
textUpdate.attr("x", 0).attr("y", Math.max(tickMajorSize, 0) + tickPadding);
text.attr("dy", ".71em").style("text-anchor", "middle");
text.text(function (i) { return shouldShowTickText(ticks, i) ? formattedCategory(i) : ""; });
11 years ago
pathUpdate.attr("d", "M" + range[0] + "," + tickEndSize + "V0H" + range[1] + "V" + tickEndSize);
12 years ago
}
break;
12 years ago
/* TODO: implement
case "top":
{
12 years ago
tickTransform = axisX
lineEnter.attr("y2", -tickMajorSize)
textEnter.attr("y", -(Math.max(tickMajorSize, 0) + tickPadding))
lineUpdate.attr("x2", 0).attr("y2", -tickMajorSize)
textUpdate.attr("x", 0).attr("y", -(Math.max(tickMajorSize, 0) + tickPadding))
text.attr("dy", "0em").style("text-anchor", "middle")
pathUpdate.attr("d", "M" + range[0] + "," + -tickEndSize + "V0H" + range[1] + "V" + -tickEndSize)
break
12 years ago
}
*/
12 years ago
case "left":
{
11 years ago
tickTransform = axisY;
lineEnter.attr("x2", -tickMajorSize);
textEnter.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding));
lineUpdate.attr("x2", -tickMajorSize).attr("y2", 0);
textUpdate.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("y", tickOffset);
text.attr("dy", ".32em").style("text-anchor", "end");
text.text(function (i) { return shouldShowTickText(ticks, i) ? formattedCategory(i) : ""; });
11 years ago
pathUpdate.attr("d", "M" + -tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + -tickEndSize);
break;
12 years ago
}
/*
12 years ago
case "right":
{
12 years ago
tickTransform = axisY
lineEnter.attr("x2", tickMajorSize)
textEnter.attr("x", Math.max(tickMajorSize, 0) + tickPadding)
lineUpdate.attr("x2", tickMajorSize).attr("y2", 0)
textUpdate.attr("x", Math.max(tickMajorSize, 0) + tickPadding).attr("y", 0)
text.attr("dy", ".32em").style("text-anchor", "start")
pathUpdate.attr("d", "M" + tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + tickEndSize)
break
12 years ago
}
*/
}
if (scale.ticks) {
11 years ago
tickEnter.call(tickTransform, scale0);
tickUpdate.call(tickTransform, scale1);
tickExit.call(tickTransform, scale1);
12 years ago
} else {
var dx = scale1.rangeBand() / 2, x = function (d) {
11 years ago
return scale1(d) + dx;
};
tickEnter.call(tickTransform, x);
tickUpdate.call(tickTransform, x);
12 years ago
}
11 years ago
});
12 years ago
}
axis.scale = function (x) {
if (!arguments.length) { return scale; }
11 years ago
scale = x;
return axis;
};
axis.orient = function (x) {
if (!arguments.length) { return orient; }
orient = x in {top: 1, right: 1, bottom: 1, left: 1} ? x + "" : "bottom";
11 years ago
return axis;
};
axis.categories = function (x) {
if (!arguments.length) { return categories; }
11 years ago
categories = x;
return axis;
};
axis.tickCentered = function (x) {
if (!arguments.length) { return tickCentered; }
11 years ago
tickCentered = x;
return axis;
};
axis.tickTextNum = function (x) {
if (!arguments.length) { return tickTextNum; }
11 years ago
tickTextNum = x;
return axis;
};
axis.tickFormat = function (format) {
if (!arguments.length) { return tickFormat; }
tickFormat = format;
return axis;
};
axis.tickOffset = function () {
11 years ago
return tickOffset;
};
axis.ticks = function () {
return; // TODO: implement
};
11 years ago
return axis;
12 years ago
}
12 years ago
function isUndefined(v) {
11 years ago
return typeof v === 'undefined';
}
function isDefined(v) {
11 years ago
return typeof v !== 'undefined';
}
11 years ago
})(window);