Browse Source

Modify class name for shapes

pull/1/head
Masayuki Tanaka 11 years ago
parent
commit
ea5581a7bf
  1. 8
      c3.css
  2. 46
      c3.js

8
c3.css

@ -28,12 +28,12 @@ text {
/*-- Line --*/ /*-- Line --*/
.__line { .-line {
stroke-width: 1px; stroke-width: 1px;
} }
/*-- Point --*/ /*-- Point --*/
.__circle._e_ { .-circle._e_ {
stroke-width: 1px; stroke-width: 1px;
stroke: white; stroke: white;
} }
@ -44,12 +44,12 @@ text {
/*-- Bar --*/ /*-- Bar --*/
.__bar._e_ { .-bar._e_ {
stroke-width: 1px; stroke-width: 1px;
fill-opacity: 0.6; fill-opacity: 0.6;
} }
/* TODO: use this*/ /* TODO: use this*/
.__bar._s_ { .-bar._s_ {
stroke-width: 1px; stroke-width: 1px;
fill-opacity: 0.3; fill-opacity: 0.3;
} }

46
c3.js

@ -496,13 +496,13 @@
function category (i) { function category (i) {
return i < __axis_x_categories.length ? __axis_x_categories[i] : i; return i < __axis_x_categories.length ? __axis_x_categories[i] : i;
} }
function classShapes (d) { return "__shapes __shapes-" + d.id; } function classShapes (d) { return "-shapes -shapes-" + d.id; }
function classLine (d) { return classShapes(d) + " __line __line-" + d.id; } function classLine (d) { return classShapes(d) + " -line -line-" + d.id; }
function classCircles (d) { return classShapes(d) + " __circles __circles-" + d.id; } function classCircles (d) { return classShapes(d) + " -circles -circles-" + d.id; }
function classBars (d) { return classShapes(d) + " __bars __bars-" + d.id; } function classBars (d) { return classShapes(d) + " -bars -bars-" + d.id; }
function classShape (d,i) { return "__shape __shape-" + i; } function classShape (d,i) { return "-shape -shape-" + i; }
function classCircle (d,i) { return classShape(d,i) + " __circle __circle-" + i; } function classCircle (d,i) { return classShape(d,i) + " -circle -circle-" + i; }
function classBar (d,i) { return classShape(d,i) + " __bar __bar-" + 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 classRegion (d,i) { return 'region region-' + i + ' ' + ('classes' in d ? [].concat(d.classes).join(' ') : ''); }
function xx (d) { function xx (d) {
@ -866,13 +866,13 @@
// Expand circles if needed // Expand circles if needed
if (__point_focus_expand_enabled) { if (__point_focus_expand_enabled) {
main.selectAll('.__circle-'+i) main.selectAll('.-circle-'+i)
.classed("_e_", true) .classed("_e_", true)
.attr('r', __point_focus_expand_r); .attr('r', __point_focus_expand_r);
} }
// Expand bars // Expand bars
main.selectAll(".__bar-"+i) main.selectAll(".-bar-"+i)
.classed("_e_", true); .classed("_e_", true);
// Show xgrid focus line // Show xgrid focus line
@ -892,19 +892,19 @@
main.select('line.xgrid-focus').style("visibility", "hidden"); main.select('line.xgrid-focus').style("visibility", "hidden");
tooltip.style("visibility", "hidden"); tooltip.style("visibility", "hidden");
// Undo expanded circles // Undo expanded circles
main.selectAll('.__circle-'+i) main.selectAll('.-circle-'+i)
.filter(function(){ return d3.select(this).classed('_e_'); }) .filter(function(){ return d3.select(this).classed('_e_'); })
.classed("_e_", false) .classed("_e_", false)
.attr('r', __point_r); .attr('r', __point_r);
// Undo expanded bar // Undo expanded bar
main.selectAll(".__bar-"+i) main.selectAll(".-bar-"+i)
.classed("_e_", false); .classed("_e_", false);
}) })
.on('mousemove', function(d,i){ .on('mousemove', function(d,i){
if ( ! __data_selection_enabled || dragging) return; if ( ! __data_selection_enabled || dragging) return;
if ( __data_selection_grouped) return; // nothing to do when grouped if ( __data_selection_grouped) return; // nothing to do when grouped
main.selectAll('.__shape-'+i) main.selectAll('.-shape-'+i)
.filter(function(d){ return __data_selection_isselectable(d); }) .filter(function(d){ return __data_selection_isselectable(d); })
.each(function(d){ .each(function(d){
var _this = d3.select(this).classed('_e_', true); var _this = d3.select(this).classed('_e_', true);
@ -930,7 +930,7 @@
}); });
}) })
.on('click', function(d,i) { .on('click', function(d,i) {
main.selectAll('.__shape-'+i).each(function(d){ main.selectAll('.-shape-'+i).each(function(d){
var _this = d3.select(this), var _this = d3.select(this),
isSelected = _this.classed('_s_'); isSelected = _this.classed('_s_');
var isWithin = false, toggle; var isWithin = false, toggle;
@ -968,7 +968,7 @@
.attr('y', minY) .attr('y', minY)
.attr('width', maxX-minX) .attr('width', maxX-minX)
.attr('height', maxY-minY); .attr('height', maxY-minY);
main.selectAll('.__shapes').selectAll('.__shape') main.selectAll('.-shapes').selectAll('.-shape')
.filter(function(d){ return __data_selection_isselectable(d); }) .filter(function(d){ return __data_selection_isselectable(d); })
.each(function(d,i){ .each(function(d,i){
var _this = d3.select(this), var _this = d3.select(this),
@ -1011,7 +1011,7 @@
.transition().duration(100) .transition().duration(100)
.style('opacity', 0) .style('opacity', 0)
.remove(); .remove();
main.selectAll('.__shape') main.selectAll('.-shape')
.classed('_i_', false); .classed('_i_', false);
dragging = false; dragging = false;
// TODO: add callback here // TODO: add callback here
@ -1184,7 +1184,7 @@
barH = getBarH(__axis_rotated ? null : height); barH = getBarH(__axis_rotated ? null : height);
barX = getBarX(barW, barTargetsNum, barIndices); barX = getBarX(barW, barTargetsNum, barIndices);
barY = getBarY(barH, barIndices, __axis_rotated); barY = getBarY(barH, barIndices, __axis_rotated);
mainBar = main.selectAll('.__bars').selectAll('.__bar') mainBar = main.selectAll('.-bars').selectAll('.-bar')
.data(barData); .data(barData);
mainBar.transition().duration(withTransition ? 250 : 0) mainBar.transition().duration(withTransition ? 250 : 0)
.attr("x", __axis_rotated ? barY : barX) .attr("x", __axis_rotated ? barY : barX)
@ -1205,10 +1205,10 @@
.remove(); .remove();
// lines and cricles // lines and cricles
main.selectAll('.__line') main.selectAll('.-line')
.transition().duration(withTransition ? 250 : 0) .transition().duration(withTransition ? 250 : 0)
.attr("d", lineOnMain); .attr("d", lineOnMain);
mainCircle = main.selectAll('.__circles').selectAll('.__circle') mainCircle = main.selectAll('.-circles').selectAll('.-circle')
.data(lineData); .data(lineData);
mainCircle.transition().duration(withTransition ? 250 : 0) mainCircle.transition().duration(withTransition ? 250 : 0)
.attr("cx", __axis_rotated ? circleY : circleX) .attr("cx", __axis_rotated ? circleY : circleX)
@ -1227,7 +1227,7 @@
barH = getBarH(height2, true); barH = getBarH(height2, true);
barX = getBarX(barW, barTargetsNum, barIndices, true); barX = getBarX(barW, barTargetsNum, barIndices, true);
barY = getBarY(barH, barIndices, false, true); barY = getBarY(barH, barIndices, false, true);
contextBar = context.selectAll('.__bars').selectAll('.__bar') contextBar = context.selectAll('.-bars').selectAll('.-bar')
.data(barData); .data(barData);
contextBar.transition().duration(withTransition ? 250 : 0) contextBar.transition().duration(withTransition ? 250 : 0)
.attr("x", barX).attr("y", barY).attr("width", barW).attr("height", barH); .attr("x", barX).attr("y", barY).attr("width", barW).attr("height", barH);
@ -1242,7 +1242,7 @@
.remove(); .remove();
// lines // lines
context.selectAll('.__line') context.selectAll('.-line')
.transition().duration(withTransition ? 250 : 0) .transition().duration(withTransition ? 250 : 0)
.attr("d", lineOnSub); .attr("d", lineOnSub);
} }
@ -1556,7 +1556,7 @@
c3.selected = function (target) { c3.selected = function (target) {
var suffix = isDefined(target) ? '-' + target : ''; var suffix = isDefined(target) ? '-' + target : '';
return d3.merge( return d3.merge(
main.selectAll('.__shapes' + suffix).selectAll('.__shape') main.selectAll('.-shapes' + suffix).selectAll('.-shape')
.filter(function(){ return d3.select(this).classed('_s_'); }) .filter(function(){ return d3.select(this).classed('_s_'); })
.map(function(d){ return d.map(function(_d){ return _d.__data__; }); }) .map(function(d){ return d.map(function(_d){ return _d.__data__; }); })
); );
@ -1564,7 +1564,7 @@
c3.select = function (ids, indices, resetOther) { c3.select = function (ids, indices, resetOther) {
if ( ! __data_selection_enabled) return; if ( ! __data_selection_enabled) return;
main.selectAll('.__shapes').selectAll('.__shape').each(function(d,i){ main.selectAll('.-shapes').selectAll('.-shape').each(function(d,i){
var selectShape = (this.nodeName === 'circle') ? selectPoint : selectBar, var selectShape = (this.nodeName === 'circle') ? selectPoint : selectBar,
unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar; unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar;
if (indices.indexOf(i) >= 0) { if (indices.indexOf(i) >= 0) {
@ -1579,7 +1579,7 @@
c3.unselect = function (ids, indices) { c3.unselect = function (ids, indices) {
if ( ! __data_selection_enabled) return; if ( ! __data_selection_enabled) return;
main.selectAll('.__shapes').selectAll('.__shape').each(function(d,i){ main.selectAll('.-shapes').selectAll('.-shape').each(function(d,i){
var unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar; var unselectShape = (this.nodeName === 'circle') ? unselectPoint : unselectBar;
if (isUndefined(indices) || indices.indexOf(i) >= 0) { if (isUndefined(indices) || indices.indexOf(i) >= 0) {
if (__data_selection_isselectable(d) && (__data_selection_grouped || isUndefined(ids) || ids.indexOf(d.id) >= 0)) { if (__data_selection_isselectable(d) && (__data_selection_grouped || isUndefined(ids) || ids.indexOf(d.id) >= 0)) {

Loading…
Cancel
Save