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.
82 lines
2.2 KiB
82 lines
2.2 KiB
import { |
|
CLASS, |
|
isValue, |
|
isFunction, |
|
isString, |
|
isUndefined, |
|
isDefined, |
|
ceil10, |
|
asHalfPixel, |
|
diffDomain, |
|
isEmpty, |
|
notEmpty, |
|
getOption, |
|
hasValue, |
|
sanitise, |
|
getPathBox, |
|
ChartInternal |
|
} from '../chartinternal.js'; |
|
|
|
const load = function (args) { |
|
let $$ = this.internal, config = $$.config; |
|
// update xs if specified |
|
if (args.xs) { |
|
$$.addXs(args.xs); |
|
} |
|
// update names if exists |
|
if ('names' in args) { |
|
c3_chart_fn.data.names.bind(this)(args.names); |
|
} |
|
// update classes if exists |
|
if ('classes' in args) { |
|
Object.keys(args.classes).forEach((id) => { |
|
config.data_classes[id] = args.classes[id]; |
|
}); |
|
} |
|
// update categories if exists |
|
if ('categories' in args && $$.isCategorized()) { |
|
config.axis_x_categories = args.categories; |
|
} |
|
// update axes if exists |
|
if ('axes' in args) { |
|
Object.keys(args.axes).forEach((id) => { |
|
config.data_axes[id] = args.axes[id]; |
|
}); |
|
} |
|
// update colors if exists |
|
if ('colors' in args) { |
|
Object.keys(args.colors).forEach((id) => { |
|
config.data_colors[id] = args.colors[id]; |
|
}); |
|
} |
|
// use cache if exists |
|
if ('cacheIds' in args && $$.hasCaches(args.cacheIds)) { |
|
$$.load($$.getCaches(args.cacheIds), args.done); |
|
return; |
|
} |
|
// unload if needed |
|
if ('unload' in args) { |
|
// TODO: do not unload if target will load (included in url/rows/columns) |
|
$$.unload($$.mapToTargetIds((typeof args.unload === 'boolean' && args.unload) ? null : args.unload), () => { |
|
$$.loadFromArgs(args); |
|
}); |
|
} else { |
|
$$.loadFromArgs(args); |
|
} |
|
}; |
|
|
|
const unload = function (args) { |
|
const $$ = this.internal; |
|
args = args || {}; |
|
if (args instanceof Array) { |
|
args = { ids: args }; |
|
} else if (typeof args === 'string') { |
|
args = { ids: [args] }; |
|
} |
|
$$.unload($$.mapToTargetIds(args.ids), () => { |
|
$$.redraw({ withUpdateOrgXDomain: true, withUpdateXDomain: true, withLegend: true }); |
|
if (args.done) { args.done(); } |
|
}); |
|
}; |
|
|
|
export { load, unload };
|
|
|