C3: minimum d3js import list

Created on 9 Jul 2018  路  3Comments  路  Source: c3js/c3

Hello,
what is the minimum d3js requirement for c3 ?

I would like to produce a minimal build for d3.js with stuff like :
import {scaleLinear} from "d3-scale";

From the doc of D3 : "D3 is written using ES2015 modules ..." https://github.com/d3/d3

so if anyone has the list, could be great.
I am currently building a Vuejs application with webpack and with the vue wrapper around C3 : https://github.com/chryb/vue-c3 .
My bundle size is big just for one little graph, that's why my question.

Most helpful comment

these works for me, it will reduce d3 size by around 50%
d3-array.js
d3-brush.js
d3-collection.js
d3-color.js
d3-dispatch.js
d3-ease.js
d3-format.js
d3-interpolate.js
d3-path.js
d3-scale-chromatic.js
d3-scale.js
d3-selection.js
d3-shape.js
d3-time-format.js
d3-timer.js
d3-transition.js
d3-zoom.js

All 3 comments

these works for me, it will reduce d3 size by around 50%
d3-array.js
d3-brush.js
d3-collection.js
d3-color.js
d3-dispatch.js
d3-ease.js
d3-format.js
d3-interpolate.js
d3-path.js
d3-scale-chromatic.js
d3-scale.js
d3-selection.js
d3-shape.js
d3-time-format.js
d3-timer.js
d3-transition.js
d3-zoom.js

I am _very_ interested in a custom build of C3, importing only necessary D3 modules for our use-case.
(E.g. only time-series base line-charts with tooltips, zoom and selection)

However: I could not get it to work properly in a Rollup/ES6 imports project.

Any working examples/tips on how to build a custom version of C3 (slimming down the considerable size) would be appreciated!

It seems a much-requested feature but I could not find any working examples.

these works for me, it will reduce d3 size by around 50%
d3-array.js
d3-brush.js
d3-collection.js
d3-color.js
d3-dispatch.js
d3-ease.js
d3-format.js
d3-interpolate.js
d3-path.js
d3-scale-chromatic.js
d3-scale.js
d3-selection.js
d3-shape.js
d3-time-format.js
d3-timer.js
d3-transition.js
d3-zoom.js

How do you translate the above to config? Does anyone have an example?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

unlight picture unlight  路  3Comments

Kreozot picture Kreozot  路  3Comments

Saikat-Sinha picture Saikat-Sinha  路  3Comments

patternboxtech picture patternboxtech  路  4Comments

Shugardude picture Shugardude  路  4Comments