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.
 
 
 
 

31 lines
522 B

// This file is only the entry point for rollup
import {
ChartInternal
} from './chartinternal.js';
import {
Chart
} from './chart.js';
import {
Axis
} from './axis.js';
var version = "0.4.11",
generate = function(config) {
return new Chart(config);
},
chart = {
fn: Chart.prototype,
internal: {
fn: ChartInternal.prototype,
axis: {
fn: Axis.prototype
}
}
};
export {
version,
generate,
chart
}