Merge pull request #14194 from janv/c3-spline

C3: Add spline property to ChartConfiguration
This commit is contained in:
Bowden Kelly
2017-02-03 19:12:32 -08:00
committed by GitHub

9
c3/index.d.ts vendored
View File

@@ -248,6 +248,15 @@ declare namespace c3 {
*/
width?: number;
};
spline?: {
interpolation?: {
/**
* Set custom spline interpolation
*/
type?: 'linear' | 'linear-closed' | 'basis' | 'basis-open' | 'basis-closed' | 'bundle' | 'cardinal' | 'cardinal-open' | 'cardinal-closed' | 'monotone';
};
};
}
interface Data {