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.
 
 
 
 

32 lines
557 B

/**
* C3.js
* (c) 2016 Masayuki Tanaka and the C3.js contributors (See package.json)
* License: MIT
*/
import { ChartInternal } from './internals/index';
import { Chart } from './chart/index';
import { Axis } from './axis/index';
const version = '0.4.11';
const generate = function generate(config) {
return new Chart(config);
};
const chart = {
fn: Chart.prototype,
internal: {
fn: ChartInternal.prototype,
axis: {
fn: Axis.prototype,
},
},
};
export {
version,
generate,
chart,
};