Browse Source

Update c3.js and c3.min.js

pull/1069/merge
Masayuki Tanaka 10 years ago
parent
commit
8c9d72e95d
  1. 6
      c3.js
  2. 2
      c3.min.js

6
c3.js

@ -5972,6 +5972,12 @@
config.data_axes[id] = args.axes[id];
});
}
// update colors if exists
if ('colors' in args) {
Object.keys(args.colors).forEach(function (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);

2
c3.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save