gitextract_93mw5ltc/ ├── .browserslistrc ├── .clean-publish ├── .commitlintrc.json ├── .czrc ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── feature-request.yml │ ├── renovate.json │ └── workflows/ │ ├── checks.yml │ ├── ci.yml │ ├── commit.yml │ ├── release.yml │ ├── update-storyshots.yml │ └── website.yml ├── .gitignore ├── .nano-staged.json ├── .npmrc ├── .nvmrc ├── .prettierrc ├── .simple-git-hooks.json ├── .simple-release.json ├── .size-limit.json ├── .storybook/ │ ├── main.js │ ├── manager.js │ ├── package.json │ ├── preview.js │ └── theme.js ├── .tool-versions ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE-MIT ├── LICENSE-WTFPL ├── README.md ├── jest.config.json ├── package.json ├── pnpm-workspace.yaml ├── postcss.config.cjs ├── rollup.config.js ├── sandboxes/ │ ├── bar/ │ │ ├── bi-polar-interpolated/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── distributed-series/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── extreme-responsive/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── horizontal/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── label-position/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── multiline/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── overlapping-bars/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── stacked/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── stacked-accumulate-relative/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ └── with-circle-modify-drawing/ │ │ ├── index.html │ │ ├── index.ts │ │ ├── package.json │ │ └── sandbox.config.json │ ├── line/ │ │ ├── area/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── axis-auto/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── axis-fixed-and-auto/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── bipolar-area/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── data-fill-holes/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── data-holes/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── modify-drawing/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── only-integer/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── path-animation/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── scatter-random/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── series-override/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── simple/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── simple-responsive/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── simple-smoothing/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── simple-svg-animation/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── svg-animation/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ └── timeseries/ │ │ ├── index.html │ │ ├── index.ts │ │ ├── package.json │ │ └── sandbox.config.json │ ├── pie/ │ │ ├── custom-labels/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── donut-animation/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── donut-chart/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ ├── simple/ │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── sandbox.config.json │ │ └── simple-gauge/ │ │ ├── index.html │ │ ├── index.ts │ │ ├── package.json │ │ └── sandbox.config.json │ └── tsconfig.json ├── scripts/ │ └── styles.cjs ├── src/ │ ├── axes/ │ │ ├── AutoScaleAxis.ts │ │ ├── Axis.spec.ts │ │ ├── Axis.ts │ │ ├── FixedScaleAxis.spec.ts │ │ ├── FixedScaleAxis.ts │ │ ├── StepAxis.spec.ts │ │ ├── StepAxis.ts │ │ ├── index.ts │ │ └── types.ts │ ├── charts/ │ │ ├── BarChart/ │ │ │ ├── BarChart.spec.ts │ │ │ ├── BarChart.stories.ts │ │ │ ├── BarChart.ts │ │ │ ├── BarChart.types.ts │ │ │ └── index.ts │ │ ├── BaseChart.ts │ │ ├── LineChart/ │ │ │ ├── LineChart.spec.ts │ │ │ ├── LineChart.stories.ts │ │ │ ├── LineChart.ts │ │ │ ├── LineChart.types.ts │ │ │ └── index.ts │ │ ├── PieChart/ │ │ │ ├── PieChart.spec.ts │ │ │ ├── PieChart.stories.ts │ │ │ ├── PieChart.ts │ │ │ ├── PieChart.types.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types.ts │ ├── core/ │ │ ├── constants.ts │ │ ├── creation.spec.ts │ │ ├── creation.ts │ │ ├── data/ │ │ │ ├── bound.spec.ts │ │ │ ├── bounds.ts │ │ │ ├── data.ts │ │ │ ├── highLow.ts │ │ │ ├── index.ts │ │ │ ├── normalize.spec.ts │ │ │ ├── normalize.ts │ │ │ ├── segments.spec.ts │ │ │ ├── segments.ts │ │ │ ├── serialize.spec.ts │ │ │ └── serialize.ts │ │ ├── index.ts │ │ ├── lang.spec.ts │ │ ├── lang.ts │ │ ├── math.ts │ │ ├── optionsProvider.ts │ │ └── types.ts │ ├── event/ │ │ ├── EventEmitter.ts │ │ └── index.ts │ ├── index.ts │ ├── interpolation/ │ │ ├── cardinal.ts │ │ ├── index.ts │ │ ├── monotoneCubic.ts │ │ ├── none.ts │ │ ├── simple.ts │ │ └── step.ts │ ├── styles/ │ │ ├── _settings.scss │ │ └── index.scss │ ├── svg/ │ │ ├── Svg.spec.ts │ │ ├── Svg.ts │ │ ├── SvgList.ts │ │ ├── SvgPath.spec.ts │ │ ├── SvgPath.ts │ │ ├── animation.ts │ │ ├── index.ts │ │ └── types.ts │ └── utils/ │ ├── extend.ts │ ├── functional.ts │ ├── index.ts │ ├── types.ts │ └── utils.ts ├── test/ │ ├── mock/ │ │ ├── cssModule.js │ │ └── dom.ts │ ├── setup.js │ ├── storyshots.spec.js │ └── utils/ │ ├── skipable.js │ └── storyshots/ │ ├── imageSnapshotWithStoryParameters.js │ ├── index.js │ ├── initStoryshots.js │ ├── storybook.js │ └── viewport.ts ├── tsconfig.build.json ├── tsconfig.json └── website/ ├── .gitignore ├── CNAME ├── README.md ├── babel.config.js ├── docs/ │ ├── api/ │ │ ├── .gitignore │ │ ├── basics.md │ │ └── docs.js │ ├── docs.js │ ├── examples/ │ │ ├── bar-chart.mdx │ │ ├── docs.js │ │ ├── index.mdx │ │ ├── line-chart.mdx │ │ └── pie-chart.mdx │ ├── index.mdx │ ├── plugins.md │ ├── what-is-it-made-for.md │ └── whats-new-in-v1.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src/ │ ├── components/ │ │ └── ContextProvider.tsx │ ├── css/ │ │ ├── custom.css │ │ └── recoloring.css │ └── prism-theme.js ├── static/ │ └── .nojekyll └── tsconfig.json