Browse Source

Fix isStepType not as default true - #254

pull/264/head
Masayuki Tanaka 11 years ago
parent
commit
282221f63d
  1. 2
      c3.js

2
c3.js

@ -2163,7 +2163,7 @@
} }
function isStepType(d) { function isStepType(d) {
var id = (typeof d === 'string') ? d : d.id; var id = (typeof d === 'string') ? d : d.id;
return !(id in __data_types) || __data_types[id] === 'step' || __data_types[id] === 'area-step'; return __data_types[id] === 'step' || __data_types[id] === 'area-step';
} }
function isSplineType(d) { function isSplineType(d) {
var id = (typeof d === 'string') ? d : d.id; var id = (typeof d === 'string') ? d : d.id;

Loading…
Cancel
Save