mirror of https://github.com/masayuki0812/c3.git
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.
40 lines
1.3 KiB
40 lines
1.3 KiB
c3_chart_fn.regions = function (regions) { |
|
var $$ = this.internal, config = $$.config; |
|
if (!regions) { return config.regions; } |
|
config.regions = regions; |
|
$$.redrawWithoutRescale(); |
|
return config.regions; |
|
}; |
|
c3_chart_fn.regions.add = function (regions) { |
|
var $$ = this.internal, config = $$.config; |
|
if (!regions) { return config.regions; } |
|
config.regions = config.regions.concat(regions); |
|
$$.redrawWithoutRescale(); |
|
return config.regions; |
|
}; |
|
c3_chart_fn.regions.remove = function (options) { |
|
var $$ = this.internal, config = $$.config, |
|
duration, classes, regions; |
|
|
|
options = options || {}; |
|
duration = $$.getOption(options, "duration", config.transition_duration); |
|
classes = $$.getOption(options, "classes", [CLASS.region]); |
|
|
|
regions = $$.main.select('.' + CLASS.regions).selectAll(classes.map(function (c) { return '.' + c; })); |
|
(duration ? regions.transition().duration(duration) : regions) |
|
.style('opacity', 0) |
|
.remove(); |
|
|
|
config.regions = config.regions.filter(function (region) { |
|
var found = false; |
|
if (!region['class']) { |
|
return true; |
|
} |
|
region['class'].split(' ').forEach(function (c) { |
|
if (classes.indexOf(c) >= 0) { found = true; } |
|
}); |
|
return !found; |
|
}); |
|
|
|
return config.regions; |
|
};
|
|
|