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.
64 lines
1.6 KiB
64 lines
1.6 KiB
8 years ago
|
import {
|
||
|
CLASS,
|
||
|
isValue,
|
||
|
isFunction,
|
||
|
isString,
|
||
|
isUndefined,
|
||
|
isDefined,
|
||
|
ceil10,
|
||
|
asHalfPixel,
|
||
|
diffDomain,
|
||
|
isEmpty,
|
||
|
notEmpty,
|
||
|
getOption,
|
||
|
hasValue,
|
||
|
sanitise,
|
||
|
getPathBox,
|
||
|
ChartInternal
|
||
|
} from '../chartinternal.js';
|
||
|
|
||
|
const regions = function (regions) {
|
||
|
let $$ = this.internal, config = $$.config;
|
||
|
if (!regions) { return config.regions; }
|
||
|
config.regions = regions;
|
||
|
$$.redrawWithoutRescale();
|
||
|
return config.regions;
|
||
|
};
|
||
|
|
||
|
regions.add = function (regions) {
|
||
|
let $$ = this.internal, config = $$.config;
|
||
|
if (!regions) { return config.regions; }
|
||
|
config.regions = config.regions.concat(regions);
|
||
|
$$.redrawWithoutRescale();
|
||
|
return config.regions;
|
||
|
};
|
||
|
|
||
|
regions.remove = function (options) {
|
||
|
let $$ = 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((c) => { return '.' + c; }));
|
||
|
(duration ? regions.transition().duration(duration) : regions)
|
||
|
.style('opacity', 0)
|
||
|
.remove();
|
||
|
|
||
|
config.regions = config.regions.filter((region) => {
|
||
|
let found = false;
|
||
|
if (!region.class) {
|
||
|
return true;
|
||
|
}
|
||
|
region.class.split(' ').forEach((c) => {
|
||
|
if (classes.indexOf(c) >= 0) { found = true; }
|
||
|
});
|
||
|
return !found;
|
||
|
});
|
||
|
|
||
|
return config.regions;
|
||
|
};
|
||
|
|
||
|
export { regions };
|