├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── docs_request.yml │ ├── feaure_request.yml │ └── others.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ └── pr_cn.md ├── labeler.yml └── workflows │ ├── auto-comment-issue.yml │ ├── bug-server.yml │ ├── hotfix-release.yml │ ├── label.yml │ ├── pr-check.yml │ ├── pre-release.yml │ ├── publish.yml │ ├── release-changelog.yml │ ├── release.yml │ ├── size-limit.yml │ ├── stale.yml │ ├── sync-main-to-develop.yml │ ├── translate-issues.yml │ └── unit-test.yml ├── .gitignore ├── .lintstagedrc ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── find-unused-exports.json ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.ja-JP.md ├── CONTRIBUTING.md ├── CONTRIBUTING.zh-CN.md ├── LICENSE ├── README.ja-JP.md ├── README.md ├── README.zh-CN.md ├── common ├── autoinstallers │ ├── create │ │ ├── README.md │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ │ ├── cli.ts │ │ │ ├── create.ts │ │ │ ├── global.d.ts │ │ │ ├── logger.ts │ │ │ └── template.ts │ │ ├── templates │ │ │ └── library │ │ │ │ ├── .eslintrc.js │ │ │ │ ├── README.md │ │ │ │ ├── bundler.config.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── global.d.ts │ │ │ │ └── index.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── vite │ │ │ │ ├── index.html │ │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ │ ├── src │ │ │ │ ├── App.css │ │ │ │ ├── App.tsx │ │ │ │ ├── assets │ │ │ │ │ └── react.svg │ │ │ │ ├── index.css │ │ │ │ ├── main.tsx │ │ │ │ └── vite-env.d.ts │ │ │ │ ├── tsconfig.json │ │ │ │ ├── tsconfig.node.json │ │ │ │ └── vite.config.ts │ │ └── tsconfig.json │ ├── lint │ │ ├── change-all.ts │ │ ├── commit-lint.js │ │ ├── commitlint.config.js │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── prettier.ts │ │ └── tsconfig.json │ ├── run-script │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── run.ts │ │ └── tsconfig.json │ └── rush-upgrade │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── rush-plugins │ │ └── rush-upgrade-self-plugin │ │ ├── rush-plugin-manifest.json │ │ └── rush-upgrade-self-plugin │ │ └── command-line.json ├── changes │ └── @visactor │ │ └── vchart │ │ └── feat-support-componentShowContent-in-initOption_2025-12-02-08-02.json ├── config │ └── rush │ │ ├── .npmrc │ │ ├── .npmrc-publish │ │ ├── .pnpmfile.cjs │ │ ├── artifactory.json │ │ ├── build-cache.json │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── experiments.json │ │ ├── pnpm-config.json │ │ ├── pnpm-lock.yaml │ │ ├── repo-state.json │ │ ├── rush-plugins.json │ │ └── version-policies.json ├── git-hooks │ ├── commit-msg │ ├── pre-commit │ └── pre-push ├── scripts │ ├── apply-release-version.js │ ├── get-package-json.js │ ├── hotfix-release.js │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ ├── install-run.js │ ├── parse-version.js │ ├── pre-release.js │ ├── release.js │ ├── set-changelog-of-harmony.js │ ├── set-json-file.js │ ├── set-prerelease-version.js │ ├── sort_deps.js │ └── version-policies.js └── template │ ├── chart.d.ts │ ├── chart.js │ ├── component.d.ts │ ├── component.js │ ├── core.d.ts │ ├── core.js │ ├── layout.d.ts │ ├── layout.js │ ├── mark.d.ts │ ├── mark.js │ ├── series.d.ts │ └── series.js ├── docs ├── .eslintrc.js ├── README.md ├── README.zh-CN.md ├── assets │ ├── api │ │ ├── en │ │ │ └── API │ │ │ │ ├── event.md │ │ │ │ ├── function.md │ │ │ │ ├── theme.md │ │ │ │ └── vchart.md │ │ ├── menu.json │ │ └── zh │ │ │ └── API │ │ │ ├── event.md │ │ │ ├── function.md │ │ │ ├── theme.md │ │ │ └── vchart.md │ ├── changelog │ │ ├── en │ │ │ ├── release-v1.md │ │ │ ├── release.md │ │ │ └── v2-upgrade-guide.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── release-v1.md │ │ │ ├── release.md │ │ │ └── v2-upgrade-guide.md │ ├── contributing │ │ ├── en │ │ │ ├── 1-Setting-Up-the-Development-Environment.md │ │ │ ├── 2-Howto Submit an Issue.md │ │ │ ├── 3-How to Contribute Documentation.md │ │ │ ├── 4-How to Contribute to a Demo.md │ │ │ ├── 5-How to Contribute Code.md │ │ │ ├── 6-How to upload image.md │ │ │ └── sourcecode │ │ │ │ ├── 0-1 Start a demo.md │ │ │ │ ├── 0-vchart-engineering.md │ │ │ │ ├── 1-vchart-basic-principles.md │ │ │ │ ├── 10.1-animation-concepts-and-types.md │ │ │ │ ├── 10.2-global-morphing-animation.md │ │ │ │ ├── 10.3-state-change-animation.md │ │ │ │ ├── 10.4-data-update-animation.md │ │ │ │ ├── 10.5-animation-orchestration.md │ │ │ │ ├── 11.1-theme-configuration-parsing-logic.md │ │ │ │ ├── 11.2-theme-update-source-code-analysis.md │ │ │ │ ├── 12.1-vchart-plugin-mechanism.md │ │ │ │ ├── 12.2-vchart-plugin-feature-source-code-analysis.md │ │ │ │ ├── 13.1-vchart-on-demand-loading-mechanism.md │ │ │ │ ├── 13.2-vchart-on-demand-loading-source-code-analysis.md │ │ │ │ ├── 14.1.1-react-vchart-introduction.md │ │ │ │ ├── 14.1.2-react-vchart-source-code-analysis.md │ │ │ │ ├── 14.2.1-taro-vchart-introduction.md │ │ │ │ ├── 14.2.2-taro-vchart-source-code-analysis.md │ │ │ │ ├── 14.3.1-lark-vchart-introduction.md │ │ │ │ ├── 14.3.2-lark-vchart-source-code-analysis.md │ │ │ │ ├── 14.4.1-tt-vchart-introduction.md │ │ │ │ ├── 14.4.2-tt-vchart-source-code-analysis.md │ │ │ │ ├── 14.5.1-wx-vchart-introduction.md │ │ │ │ ├── 14.5.2-wx-vchart-source-code-analysis.md │ │ │ │ ├── 14.6.1-openinula-vchart-introduction.md │ │ │ │ ├── 14.6.2-openinula-vchart-source-code-analysis.md │ │ │ │ ├── 14.7.1-harmony-vchart-introduction.md │ │ │ │ ├── 14.7.2-harmony-vchart-source-code-analysis.md │ │ │ │ ├── 14.8.1-vchart-svg-plugin-introduction.md │ │ │ │ ├── 14.8.2-vchart-svg-plugin-source-code-analysis.md │ │ │ │ ├── 3-how-to-assemble-a-vchart.md │ │ │ │ ├── 6.1-primitive-basic-concepts.md │ │ │ │ ├── 6.2-visual-channel-mapping.md │ │ │ │ ├── 6.3-primitive-interaction-and-state-handling.md │ │ │ │ ├── 6.4-custom-primitives.md │ │ │ │ ├── 9.1-vchart-layout-basic-concepts.md │ │ │ │ └── 9.2-vchart-layout-source-code-analysis.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── 1-Setting-Up-the-Development-Environment.md │ │ │ ├── 2-Howto Submit an Issue.md │ │ │ ├── 3-How to Contribute Documentation.md │ │ │ ├── 4-How to Contribute to a Demo.md │ │ │ ├── 5-How to Contribute Code.md │ │ │ ├── 6-How to upload image.md │ │ │ ├── 7-How to debug.md │ │ │ ├── sourcecode │ │ │ ├── 0-1 Start a demo.md │ │ │ ├── 0-vchart-engineering.md │ │ │ ├── 1-vchart-basic-principles.md │ │ │ ├── 10.1-animation-concepts-and-types.md │ │ │ ├── 10.2-global-morphing-animation.md │ │ │ ├── 10.3-state-change-animation.md │ │ │ ├── 10.4-data-update-animation.md │ │ │ ├── 10.5-animation-orchestration.md │ │ │ ├── 11.1-theme-configuration-parsing-logic.md │ │ │ ├── 11.2-theme-update-source-code-analysis.md │ │ │ ├── 12.1-vchart-plugin-mechanism.md │ │ │ ├── 12.2-vchart-plugin-feature-source-code-analysis.md │ │ │ ├── 13.1-vchart-on-demand-loading-mechanism.md │ │ │ ├── 13.2-vchart-on-demand-loading-source-code-analysis.md │ │ │ ├── 14.1.1-react-vchart-introduction.md │ │ │ ├── 14.1.2-react-vchart-source-code-analysis.md │ │ │ ├── 14.2.1-taro-vchart-introduction.md │ │ │ ├── 14.2.2-taro-vchart-source-code-analysis.md │ │ │ ├── 14.3.1-lark-vchart-introduction.md │ │ │ ├── 14.3.2-lark-vchart-source-code-analysis.md │ │ │ ├── 14.4.1-tt-vchart-introduction.md │ │ │ ├── 14.4.2-tt-vchart-source-code-analysis.md │ │ │ ├── 14.5.1-wx-vchart-introduction.md │ │ │ ├── 14.5.2-wx-vchart-source-code-analysis.md │ │ │ ├── 14.6.1-openinula-vchart-introduction.md │ │ │ ├── 14.6.2-openinula-vchart-source-code-analysis.md │ │ │ ├── 14.7.1-harmony-vchart-introduction.md │ │ │ ├── 14.7.2-harmony-vchart-source-code-analysis.md │ │ │ ├── 14.8.1-vchart-svg-plugin-introduction.md │ │ │ ├── 14.8.2-vchart-svg-plugin-source-code-analysis.md │ │ │ ├── 3-how-to-assemble-a-vchart.md │ │ │ ├── 6.1-primitive-basic-concepts.md │ │ │ ├── 6.2-visual-channel-mapping.md │ │ │ ├── 6.3-primitive-interaction-and-state-handling.md │ │ │ ├── 6.4-custom-primitives.md │ │ │ ├── 9.1-vchart-layout-basic-concepts.md │ │ │ └── 9.2-vchart-layout-source-code-analysis.md │ │ │ └── sourcesode │ │ │ ├── 0-vchart-engineering.md │ │ │ ├── 1-vchart-basic-principles.md │ │ │ ├── 10.1-animation-concepts-and-types.md │ │ │ ├── 10.2-global-morphing-animation.md │ │ │ ├── 10.3-state-change-animation.md │ │ │ ├── 10.4-data-update-animation.md │ │ │ ├── 10.5-animation-orchestration.md │ │ │ ├── 11.1-theme-configuration-parsing-logic.md │ │ │ ├── 11.2-theme-update-source-code-analysis.md │ │ │ ├── 12.1-vchart-plugin-mechanism.md │ │ │ ├── 12.2-vchart-plugin-feature-source-code-analysis.md │ │ │ ├── 13.1-vchart-on-demand-loading-mechanism.md │ │ │ ├── 13.2-vchart-on-demand-loading-source-code-analysis.md │ │ │ ├── 14.1.1-react-vchart-introduction.md │ │ │ ├── 14.1.2-react-vchart-source-code-analysis.md │ │ │ ├── 14.2.1-taro-vchart-introduction.md │ │ │ ├── 14.2.2-taro-vchart-source-code-analysis.md │ │ │ ├── 14.3.1-lark-vchart-introduction.md │ │ │ ├── 14.3.2-lark-vchart-source-code-analysis.md │ │ │ ├── 14.4.1-tt-vchart-introduction.md │ │ │ ├── 14.4.2-tt-vchart-source-code-analysis.md │ │ │ ├── 14.5.1-wx-vchart-introduction.md │ │ │ ├── 14.5.2-wx-vchart-source-code-analysis.md │ │ │ ├── 14.6.1-openinula-vchart-introduction.md │ │ │ ├── 14.6.2-openinula-vchart-source-code-analysis.md │ │ │ ├── 14.7.1-harmony-vchart-introduction.md │ │ │ ├── 14.7.2-harmony-vchart-source-code-analysis.md │ │ │ ├── 14.8.1-vchart-svg-plugin-introduction.md │ │ │ ├── 14.8.2-vchart-svg-plugin-source-code-analysis.md │ │ │ ├── 3-how-to-assemble-a-vchart.md │ │ │ ├── 6.1-primitive-basic-concepts.md │ │ │ ├── 6.2-visual-channel-mapping.md │ │ │ ├── 6.3-primitive-interaction-and-state-handling.md │ │ │ ├── 6.4-custom-primitives.md │ │ │ ├── 9.1-vchart-layout-basic-concepts.md │ │ │ └── 9.2-vchart-layout-source-code-analysis.md │ ├── demos │ │ ├── builtin-theme │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ ├── area.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── cartesian-mark-point.ts │ │ │ │ ├── column.ts │ │ │ │ ├── funnel.ts │ │ │ │ ├── gauge.ts │ │ │ │ ├── heatmap.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── mark-area.ts │ │ │ │ ├── mark-line.ts │ │ │ │ ├── pie.ts │ │ │ │ ├── radar.ts │ │ │ │ ├── rose.ts │ │ │ │ └── scatter.ts │ │ │ ├── index.html │ │ │ ├── main.css │ │ │ ├── main.ts │ │ │ └── vite-env.d.ts │ │ ├── chart-history │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ ├── actor │ │ │ │ │ └── asset.ts │ │ │ │ └── assets │ │ │ │ │ ├── bg-noise.png │ │ │ │ │ └── footer.png │ │ │ ├── constant.ts │ │ │ ├── index.html │ │ │ ├── index.ts │ │ │ ├── layer.ts │ │ │ ├── lib │ │ │ │ └── anime.es.js │ │ │ ├── main.ts │ │ │ ├── pages │ │ │ │ ├── action.ts │ │ │ │ ├── actor.ts │ │ │ │ ├── chart1486 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── chart-1.png │ │ │ │ │ │ ├── chart-2.png │ │ │ │ │ │ ├── chart-3.png │ │ │ │ │ │ ├── chart-4.png │ │ │ │ │ │ ├── chart-5-empty.png │ │ │ │ │ │ ├── chart-5.png │ │ │ │ │ │ ├── decoration.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title-image.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1644 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── blocks.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── decoration.png │ │ │ │ │ │ ├── line-long.png │ │ │ │ │ │ ├── line-short.png │ │ │ │ │ │ ├── matrix.png │ │ │ │ │ │ ├── name.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ ├── title-decoration.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1765 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title-image.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1786-2 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── main-image.png │ │ │ │ │ │ └── text.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1786 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ └── main-image.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1801 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── pie.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1833 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── image1.png │ │ │ │ │ │ ├── image2.png │ │ │ │ │ │ ├── text.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1856 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── person.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1877 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── person.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1976 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1990s-2 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── chart1990s │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ ├── asset.ts │ │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bg-decoration.png │ │ │ │ │ │ ├── chart.png │ │ │ │ │ │ ├── text-en.png │ │ │ │ │ │ ├── text-zh.png │ │ │ │ │ │ └── title.png │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── page.ts │ │ │ │ ├── timeline │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ │ └── asset.ts │ │ │ │ │ └── index.ts │ │ │ │ └── title │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor │ │ │ │ │ ├── asset.ts │ │ │ │ │ └── chart.ts │ │ │ │ │ ├── assets │ │ │ │ │ └── powered-by-vchart.png │ │ │ │ │ └── index.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── qixi │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ ├── actor │ │ │ │ │ └── asset.ts │ │ │ │ └── assets │ │ │ │ │ └── bg-noise.png │ │ │ ├── data │ │ │ │ ├── 01 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── boy-1995.jpeg │ │ │ │ │ │ ├── boy-1997.jpeg │ │ │ │ │ │ ├── boy-2000.jpeg │ │ │ │ │ │ ├── boy-2005.jpeg │ │ │ │ │ │ ├── boy-2010.jpeg │ │ │ │ │ │ ├── boy-2015.jpeg │ │ │ │ │ │ ├── boy-2020.jpeg │ │ │ │ │ │ ├── boy-2023.jpeg │ │ │ │ │ │ ├── girl-1997.webp │ │ │ │ │ │ ├── girl-2000.jpeg │ │ │ │ │ │ ├── girl-2005.jpeg │ │ │ │ │ │ ├── girl-2010.jpeg │ │ │ │ │ │ ├── girl-2015.jpeg │ │ │ │ │ │ ├── girl-2020.jpeg │ │ │ │ │ │ └── girl-2023.jpeg │ │ │ │ │ ├── data.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── 02 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── 01.jpeg │ │ │ │ │ │ ├── 02.jpeg │ │ │ │ │ │ ├── 03.jpeg │ │ │ │ │ │ ├── 04.jpeg │ │ │ │ │ │ ├── 05.jpeg │ │ │ │ │ │ ├── 06.jpeg │ │ │ │ │ │ └── 07.jpeg │ │ │ │ │ ├── data.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── 03 │ │ │ │ │ ├── data.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── anime.es.js │ │ │ ├── main.ts │ │ │ ├── pages │ │ │ │ ├── 01 │ │ │ │ │ ├── action.ts │ │ │ │ │ └── actor.ts │ │ │ │ ├── 02 │ │ │ │ │ ├── action.ts │ │ │ │ │ └── actor.ts │ │ │ │ ├── 03 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor.ts │ │ │ │ │ └── assets │ │ │ │ │ │ └── bg.mp4 │ │ │ │ ├── 04 │ │ │ │ │ ├── action.ts │ │ │ │ │ ├── actor.ts │ │ │ │ │ └── assets │ │ │ │ │ │ └── logo.png │ │ │ │ ├── action.ts │ │ │ │ ├── actor.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layer.ts │ │ │ │ └── page.ts │ │ │ ├── spec │ │ │ │ ├── 01 │ │ │ │ │ ├── bar.ts │ │ │ │ │ └── indicator.ts │ │ │ │ ├── 02 │ │ │ │ │ └── bar.ts │ │ │ │ └── 03 │ │ │ │ │ └── word-cloud.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── template │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── vite-env.d.ts │ │ └── vmind-chart-generation │ │ │ ├── App.tsx │ │ │ ├── Layout.tsx │ │ │ ├── constants │ │ │ └── index.ts │ │ │ ├── index.html │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ ├── Home.tsx │ │ │ ├── LeftInput.tsx │ │ │ ├── RightChart.tsx │ │ │ └── index.scss │ ├── examples-openinula │ │ ├── en │ │ │ ├── component │ │ │ │ ├── clock.md │ │ │ │ ├── common.md │ │ │ │ └── ring.md │ │ │ ├── grammatical-tag │ │ │ │ ├── basic-column.md │ │ │ │ └── nested-pie.md │ │ │ ├── theme │ │ │ │ └── stack-radar.md │ │ │ └── usage │ │ │ │ ├── basic-line.md │ │ │ │ ├── basic-pie.md │ │ │ │ └── line-default-select.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── component │ │ │ ├── clock.md │ │ │ ├── common.md │ │ │ └── ring.md │ │ │ ├── grammatical-tag │ │ │ ├── basic-column.md │ │ │ └── nested-pie.md │ │ │ ├── theme │ │ │ └── stack-radar.md │ │ │ └── usage │ │ │ ├── basic-line.md │ │ │ ├── basic-pie.md │ │ │ └── line-default-select.md │ ├── examples-react │ │ ├── en │ │ │ ├── component │ │ │ │ ├── clock.md │ │ │ │ ├── common.md │ │ │ │ └── ring.md │ │ │ ├── events │ │ │ │ └── sync-charts.md │ │ │ ├── grammatical-tag │ │ │ │ ├── basic-column.md │ │ │ │ └── nested-pie.md │ │ │ ├── react-attributes │ │ │ │ ├── funnel-react-attributes.md │ │ │ │ └── legend-icon.md │ │ │ ├── theme │ │ │ │ └── stack-radar.md │ │ │ └── usage │ │ │ │ ├── basic-line.md │ │ │ │ ├── basic-pie.md │ │ │ │ └── line-default-select.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── component │ │ │ ├── clock.md │ │ │ ├── common.md │ │ │ └── ring.md │ │ │ ├── events │ │ │ └── sync-charts.md │ │ │ ├── grammatical-tag │ │ │ ├── basic-column.md │ │ │ └── nested-pie.md │ │ │ ├── react-attributes │ │ │ ├── funnel-react-attributes.md │ │ │ └── legend-icon.md │ │ │ ├── theme │ │ │ └── stack-radar.md │ │ │ └── usage │ │ │ ├── basic-line.md │ │ │ ├── basic-pie.md │ │ │ └── line-default-select.md │ ├── examples │ │ ├── en │ │ │ ├── area-chart │ │ │ │ ├── area-style.md │ │ │ │ ├── area-with-marker.md │ │ │ │ ├── basic-area.md │ │ │ │ ├── horizontal-area.md │ │ │ │ ├── negative-values-area.md │ │ │ │ ├── null-value-area.md │ │ │ │ ├── percentage-stacked-area.md │ │ │ │ ├── range-area.md │ │ │ │ ├── segment-range-area.md │ │ │ │ ├── smoothed-area.md │ │ │ │ ├── stacked-area.md │ │ │ │ ├── stacked-dash-area.md │ │ │ │ ├── step-area.md │ │ │ │ ├── stream-graph.md │ │ │ │ └── unstacked-area.md │ │ │ ├── axis │ │ │ │ ├── animation.md │ │ │ │ ├── axis-band-size.md │ │ │ │ ├── axis-break.md │ │ │ │ ├── axis-inner-offset.md │ │ │ │ ├── axis-label-autoHide-and-autoRotate.md │ │ │ │ ├── axis-label-autoHide.md │ │ │ │ ├── axis-label-autoLimit.md │ │ │ │ ├── axis-label-autoRotate.md │ │ │ │ ├── axis-label-autoWrap.md │ │ │ │ ├── axis-richtext-label.md │ │ │ │ ├── axis-sync.md │ │ │ │ ├── axis-vertical-label.md │ │ │ │ ├── disable-sampling.md │ │ │ │ ├── flush.md │ │ │ │ ├── grid-style.md │ │ │ │ ├── interactive.md │ │ │ │ ├── inverse.md │ │ │ │ ├── label-container-align.md │ │ │ │ ├── log-axis.md │ │ │ │ ├── multiple-layers-of-axis-1.md │ │ │ │ ├── multiple-layers-of-axis.md │ │ │ │ ├── on-zero.md │ │ │ │ ├── polar.md │ │ │ │ ├── style.md │ │ │ │ ├── subtick-and-subgrid.md │ │ │ │ └── symlog-axis.md │ │ │ ├── bar-chart │ │ │ │ ├── bar-background.md │ │ │ │ ├── bar-break-by-axis.md │ │ │ │ ├── bar-customized-label.md │ │ │ │ ├── bar-functional-label-position.md │ │ │ │ ├── bar-markPoint.md │ │ │ │ ├── bar-poly-regression-line.md │ │ │ │ ├── basic-bar.md │ │ │ │ ├── basic-column.md │ │ │ │ ├── bi-direction-bar.md │ │ │ │ ├── bi-direction-stack-column.md │ │ │ │ ├── gradient-column.md │ │ │ │ ├── group-bar-with-barGapInGroup.md │ │ │ │ ├── group-bar-with-padding.md │ │ │ │ ├── group-bar.md │ │ │ │ ├── group-column.md │ │ │ │ ├── group-stack-column.md │ │ │ │ ├── group-stack-percentage-column.md │ │ │ │ ├── population-pyramid.md │ │ │ │ ├── stack-column.md │ │ │ │ ├── stack-percentage-bar.md │ │ │ │ ├── stack-percentage-column.md │ │ │ │ └── tgi-bar.md │ │ │ ├── box-plot │ │ │ │ ├── basic-box-plot.md │ │ │ │ ├── box-plot-style.md │ │ │ │ └── grouped-box-plot.md │ │ │ ├── brush │ │ │ │ ├── brush-datazoom.md │ │ │ │ ├── polygon-brush.md │ │ │ │ ├── rect-linked-brush.md │ │ │ │ └── x-linked-brush.md │ │ │ ├── calendar │ │ │ │ ├── calendar-basic.md │ │ │ │ └── calendar-custom-event.md │ │ │ ├── candlestick-chart │ │ │ │ ├── candlestick-basic.md │ │ │ │ ├── candlestick-with-MA.md │ │ │ │ └── candlestick-with-volume.md │ │ │ ├── chart-3d │ │ │ │ ├── area3d.md │ │ │ │ ├── bar3d.md │ │ │ │ ├── funnel3d.md │ │ │ │ ├── line3d.md │ │ │ │ ├── pie3d.md │ │ │ │ ├── scatter3d.md │ │ │ │ └── wordcloud3d.md │ │ │ ├── circle-packing-chart │ │ │ │ ├── basic-circle-packing.md │ │ │ │ ├── bubble-circle-packing.md │ │ │ │ ├── circle-packing-multiple-roots.md │ │ │ │ └── circle-packing-padding.md │ │ │ ├── combination │ │ │ │ ├── bar-autoBandSize.md │ │ │ │ ├── bar-combine.md │ │ │ │ ├── bar-line.md │ │ │ │ ├── col-line.md │ │ │ │ ├── col-pie.md │ │ │ │ ├── dual-axis.md │ │ │ │ ├── easing-visualization.md │ │ │ │ ├── line-pie.md │ │ │ │ ├── polar-combine.md │ │ │ │ ├── scatter-combine.md │ │ │ │ └── single-region.md │ │ │ ├── correlation-chart │ │ │ │ └── correlation-chart.md │ │ │ ├── crosshair │ │ │ │ ├── line.md │ │ │ │ ├── multiple-region.md │ │ │ │ ├── polar-line.md │ │ │ │ ├── polar-rect.md │ │ │ │ └── rect.md │ │ │ ├── custom │ │ │ │ ├── bar-image-extension.md │ │ │ │ ├── business-funnel.md │ │ │ │ ├── custom-shape.md │ │ │ │ ├── mark.md │ │ │ │ ├── pie-extend-bars.md │ │ │ │ ├── pie-extension-icon.md │ │ │ │ ├── pie-extension.md │ │ │ │ ├── rect-html.md │ │ │ │ ├── series-extension.md │ │ │ │ └── state-sort.md │ │ │ ├── data-zoom │ │ │ │ ├── data-zoom-big-data.md │ │ │ │ ├── data-zoom-lock.md │ │ │ │ ├── data-zoom-polar.md │ │ │ │ ├── data-zoom-span.md │ │ │ │ ├── filter-mode-axis.md │ │ │ │ ├── preview-data.md │ │ │ │ └── state-with-data.md │ │ │ ├── data │ │ │ │ ├── basic-data.md │ │ │ │ ├── data-fields-alias.md │ │ │ │ ├── data-fields-domain.md │ │ │ │ ├── data-fields-sort.md │ │ │ │ └── data-filter.md │ │ │ ├── extension-chart │ │ │ │ ├── sequence-scatter-kde.md │ │ │ │ ├── sequence-scatter-link-classification.md │ │ │ │ └── sequence-scatter-link-neighborhood.md │ │ │ ├── funnel-chart │ │ │ │ ├── basic-funnel.md │ │ │ │ ├── comparative-funnel-template.md │ │ │ │ ├── conversion-funnel.md │ │ │ │ ├── custom-funnel.md │ │ │ │ ├── funnel-custom-annotation.md │ │ │ │ ├── funnel-template.md │ │ │ │ ├── rect-funnel.md │ │ │ │ └── transform-funnel.md │ │ │ ├── gantt │ │ │ │ ├── gantt-basic.md │ │ │ │ ├── gantt-customLayout.md │ │ │ │ ├── gantt-dependency-link-create.md │ │ │ │ ├── gantt-dependency-link-line.md │ │ │ │ ├── gantt-edit.md │ │ │ │ ├── gantt-interaction-creation-button.md │ │ │ │ ├── gantt-interaction-drag-table-width.md │ │ │ │ ├── gantt-interaction-drag-taskBar.md │ │ │ │ ├── gantt-table-mergeCell.md │ │ │ │ └── gantt-taskShowMode.md │ │ │ ├── gauge-chart │ │ │ │ ├── basic-gauge.md │ │ │ │ ├── clock.md │ │ │ │ ├── gauge-gradient.md │ │ │ │ ├── gauge-progress-tick.md │ │ │ │ ├── gauge-progress.md │ │ │ │ ├── gauge-segment-custom-tick.md │ │ │ │ ├── gauge-segment-tick.md │ │ │ │ ├── gauge-segment.md │ │ │ │ └── gauge-track.md │ │ │ ├── gradient │ │ │ │ ├── area.md │ │ │ │ ├── bar.md │ │ │ │ ├── enhancement-gradient-line.md │ │ │ │ ├── line.md │ │ │ │ └── scatter.md │ │ │ ├── heatmap-chart │ │ │ │ └── basic-heatmap.md │ │ │ ├── histogram-chart │ │ │ │ ├── histogram-basis.md │ │ │ │ ├── histogram-bin.md │ │ │ │ ├── histogram-different-bin.md │ │ │ │ ├── histogram-regression-line.md │ │ │ │ ├── histogram-stack-h.md │ │ │ │ └── histogram-stack.md │ │ │ ├── interaction │ │ │ │ ├── area-chart-element-highlight.md │ │ │ │ ├── combination-chart-highlight-by-key.md │ │ │ │ ├── element-active.md │ │ │ │ ├── highlight-by-legend.md │ │ │ │ ├── line-chart-element-highlight-by-group.md │ │ │ │ ├── pie-chart-active-by-legend.md │ │ │ │ ├── pie-chart-multiple-select.md │ │ │ │ └── rose-chart-highlight-by-name.md │ │ │ ├── label │ │ │ │ ├── bar-label-syncState.md │ │ │ │ ├── bar-label.md │ │ │ │ ├── combination-chart-label.md │ │ │ │ ├── label-formatter.md │ │ │ │ ├── label-mark-tooltip.md │ │ │ │ ├── line-label.md │ │ │ │ └── richtext-label.md │ │ │ ├── layout │ │ │ │ ├── align-self.md │ │ │ │ ├── custom-layout.md │ │ │ │ └── grid-layout.md │ │ │ ├── legend │ │ │ │ ├── continuous.md │ │ │ │ ├── custom-data.md │ │ │ │ ├── custom-interaction.md │ │ │ │ ├── custom-line-legend.md │ │ │ │ ├── custom-ui.md │ │ │ │ ├── discrete-legend-scale.md │ │ │ │ ├── float.md │ │ │ │ ├── focus.md │ │ │ │ ├── multiple-legends.md │ │ │ │ ├── scrollbar.md │ │ │ │ └── single-select.md │ │ │ ├── line-chart │ │ │ │ ├── basic-line.md │ │ │ │ ├── dash-line.md │ │ │ │ ├── horizontal-line.md │ │ │ │ ├── line-axes-padding.md │ │ │ │ ├── line-custom-state.md │ │ │ │ ├── line-default-select.md │ │ │ │ ├── line-overlap.md │ │ │ │ ├── line-sampling.md │ │ │ │ ├── multi-line.md │ │ │ │ ├── null-value-line.md │ │ │ │ ├── percentage-stacked-line.md │ │ │ │ ├── smoothed-line.md │ │ │ │ ├── stacked-line.md │ │ │ │ ├── step-line.md │ │ │ │ └── unstacked-line.md │ │ │ ├── liquid-chart │ │ │ │ ├── liquid-chart-background.md │ │ │ │ ├── liquid-chart-reverse.md │ │ │ │ ├── liquid-chart-shape.md │ │ │ │ ├── liquid-chart-smart-invert.md │ │ │ │ ├── liquid-chart-target.md │ │ │ │ └── liquid-chart.md │ │ │ ├── map-chart │ │ │ │ ├── basic-map.md │ │ │ │ ├── map-with-flying-lines.md │ │ │ │ └── scatter-map.md │ │ │ ├── marker │ │ │ │ ├── bar-poly-regression-line.md │ │ │ │ ├── cartesian-mark-area-pos.md │ │ │ │ ├── cartesian-mark-line-pos.md │ │ │ │ ├── geo-mark-point.md │ │ │ │ ├── histogram-regression-line.md │ │ │ │ ├── mark-area-basic.md │ │ │ │ ├── mark-area-multi.md │ │ │ │ ├── mark-area-quadrant.md │ │ │ │ ├── mark-area-range.md │ │ │ │ ├── mark-area-with-label.md │ │ │ │ ├── mark-line-CAGR.md │ │ │ │ ├── mark-line-axis.md │ │ │ │ ├── mark-line-basic.md │ │ │ │ ├── mark-line-color-with-series.md │ │ │ │ ├── mark-line-coordinates.md │ │ │ │ ├── mark-line-custom-label-back.md │ │ │ │ ├── mark-line-hierarchy-diff.md │ │ │ │ ├── mark-line-multi.md │ │ │ │ ├── mark-line-part-regression.md │ │ │ │ ├── mark-line-ref-series.md │ │ │ │ ├── mark-line-total-diff.md │ │ │ │ ├── mark-point-basic.md │ │ │ │ ├── mark-point-image.md │ │ │ │ ├── polar-mark-area-pos.md │ │ │ │ ├── polar-mark-line-pos.md │ │ │ │ ├── polar-mark-line.md │ │ │ │ ├── polar-mark-point.md │ │ │ │ ├── scatter-regression-line.md │ │ │ │ └── trend-line.md │ │ │ ├── mosaic-chart │ │ │ │ ├── basic-mosaic.md │ │ │ │ ├── group-mosaic.md │ │ │ │ └── simple-mosaic.md │ │ │ ├── pattern │ │ │ │ ├── accessible-column.md │ │ │ │ ├── accessible-pie.md │ │ │ │ ├── dynamic-texture-bar.md │ │ │ │ └── dynamic-texture-progress.md │ │ │ ├── pictogram-chart │ │ │ │ ├── pictogram-bagua.md │ │ │ │ ├── pictogram-cat.md │ │ │ │ ├── pictogram-chinamap.md │ │ │ │ ├── pictogram-cow.md │ │ │ │ ├── pictogram-guwen.md │ │ │ │ ├── pictogram-heart.md │ │ │ │ ├── pictogram-keyboard.md │ │ │ │ ├── pictogram-mall.md │ │ │ │ ├── pictogram-route-swimming.md │ │ │ │ ├── pictogram-route.md │ │ │ │ └── pictogram-seat-map.md │ │ │ ├── pie-chart │ │ │ │ ├── basic-pie.md │ │ │ │ ├── customized-legend-pie.md │ │ │ │ ├── linear-color-pie.md │ │ │ │ ├── nested-pie.md │ │ │ │ ├── pie-indicator-fitstrategy.md │ │ │ │ ├── pie-indicator.md │ │ │ │ ├── pie-label.md │ │ │ │ ├── radius-scale-pie.md │ │ │ │ ├── richtext-autoEllipsis.md │ │ │ │ ├── richtext-autowrap.md │ │ │ │ ├── ring.md │ │ │ │ └── smooth-label-line.md │ │ │ ├── pivot-chart │ │ │ │ ├── pivot-chart-pie.md │ │ │ │ ├── pivot-chart-radar.md │ │ │ │ ├── pivot-chart-scatter.md │ │ │ │ ├── pivot-chart-wordCloud.md │ │ │ │ └── pivot-chart.md │ │ │ ├── player │ │ │ │ ├── basic-player.md │ │ │ │ └── continuous-player.md │ │ │ ├── progress │ │ │ │ ├── circular-progress-tick.md │ │ │ │ ├── circular-progress-with-text.md │ │ │ │ ├── circular-progress.md │ │ │ │ ├── linear-progress-with-multi-label.md │ │ │ │ ├── linear-progress-with-target-value.md │ │ │ │ ├── linear-progress-with-text.md │ │ │ │ ├── linear-progress.md │ │ │ │ └── segment-linear-progress.md │ │ │ ├── radar-chart │ │ │ │ ├── basic-radar.md │ │ │ │ ├── multiple-radar.md │ │ │ │ ├── radar-with-innerRadius.md │ │ │ │ ├── stack-percent-radar.md │ │ │ │ └── stack-radar.md │ │ │ ├── range-column-chart │ │ │ │ ├── range-bar.md │ │ │ │ └── range-column.md │ │ │ ├── rose-chart │ │ │ │ ├── basic-rose.md │ │ │ │ ├── rose-grouped.md │ │ │ │ ├── rose-stacked-group.md │ │ │ │ └── rose-stacked.md │ │ │ ├── sankey-chart │ │ │ │ ├── align-nodes-left-sankey.md │ │ │ │ ├── another-data-structure-sankey.md │ │ │ │ ├── basic-sankey.md │ │ │ │ ├── customized-node.md │ │ │ │ ├── direction-sankey.md │ │ │ │ ├── hierarchical-sankey.md │ │ │ │ ├── interection-sankey.md │ │ │ │ ├── nameKey-sankey.md │ │ │ │ ├── sankey-with-scrollbar.md │ │ │ │ └── specified-node.md │ │ │ ├── scatter-chart │ │ │ │ ├── basic-scatter.md │ │ │ │ ├── bubble-scatter.md │ │ │ │ ├── jitter-scatter.md │ │ │ │ ├── one-dimension-scatter.md │ │ │ │ ├── scatter-regression-line.md │ │ │ │ ├── scatter-shape.md │ │ │ │ └── stack-scatter.md │ │ │ ├── scrollbar │ │ │ │ ├── basic-scrollbar-bar-chart.md │ │ │ │ ├── roam-drag-zoom.md │ │ │ │ ├── roam-scroll.md │ │ │ │ ├── scrollbar-line-chart.md │ │ │ │ └── scrollbar-specified-value.md │ │ │ ├── sequence-chart │ │ │ │ ├── NBA-player-event.md │ │ │ │ └── social-media-event.md │ │ │ ├── storytelling │ │ │ │ ├── appear-animation-config.md │ │ │ │ ├── area-streamlight.md │ │ │ │ ├── bar-highlight-animation.md │ │ │ │ ├── bar-oneByOne-group.md │ │ │ │ ├── bar-oneByOne-rect.md │ │ │ │ ├── bar-oneByOne-series.md │ │ │ │ ├── bar-to-pie.md │ │ │ │ ├── bar-to-scatter.md │ │ │ │ ├── dynamic-comparative-bar-chart.md │ │ │ │ ├── dynamic-line-chart.md │ │ │ │ ├── dynamic-rose-chart.md │ │ │ │ ├── pie-preset-animation.md │ │ │ │ ├── ranking-bar.md │ │ │ │ ├── ring-carousel-animation.md │ │ │ │ ├── simple-animation-arrangement.md │ │ │ │ ├── timeline-scatter.md │ │ │ │ └── weekly-activity.md │ │ │ ├── sunburst-chart │ │ │ │ ├── basic-sunburst.md │ │ │ │ ├── sunburst-auto-label.md │ │ │ │ └── sunburst-layout.md │ │ │ ├── theme │ │ │ │ ├── theme-style.md │ │ │ │ └── theme-switch.md │ │ │ ├── title │ │ │ │ ├── basic-title.md │ │ │ │ ├── richText-title.md │ │ │ │ └── style-title.md │ │ │ ├── tooltip │ │ │ │ ├── area-mark-tooltip.md │ │ │ │ ├── bar-group-tooltip.md │ │ │ │ ├── custom-mark-tooltip.md │ │ │ │ ├── custom-tooltip-handler.md │ │ │ │ ├── custom-tooltip.md │ │ │ │ ├── enterable-tooltip.md │ │ │ │ ├── format-method.md │ │ │ │ ├── line-group-tooltip.md │ │ │ │ └── time-axis-tooltip.md │ │ │ ├── treemap-chart │ │ │ │ ├── basic-treemap.md │ │ │ │ └── treemap-show-parent-level.md │ │ │ ├── venn-chart │ │ │ │ ├── venn-chart-hollow.md │ │ │ │ └── venn-chart.md │ │ │ ├── vscreen │ │ │ │ ├── area-growth.md │ │ │ │ ├── area-load.md │ │ │ │ ├── bar-highlight.md │ │ │ │ ├── bar-streamlight.md │ │ │ │ ├── bilateral-growth.md │ │ │ │ ├── column-parallel-highlight.md │ │ │ │ ├── column-parallel-streamlight.md │ │ │ │ ├── double-axis-load.md │ │ │ │ ├── funnel.md │ │ │ │ ├── gauge.md │ │ │ │ ├── line-growth.md │ │ │ │ ├── line-load.md │ │ │ │ ├── liquid.md │ │ │ │ ├── pie-relocate.md │ │ │ │ ├── pie-scale.md │ │ │ │ ├── radar-ridial.md │ │ │ │ ├── sankey.md │ │ │ │ ├── scatter-ripple.md │ │ │ │ └── word-cloud-scale.md │ │ │ ├── waterfall │ │ │ │ ├── basic-waterfall.md │ │ │ │ ├── collect-waterfall.md │ │ │ │ ├── direction-waterfall.md │ │ │ │ └── stack-waterfall.md │ │ │ └── word-cloud-chart │ │ │ │ ├── word-cloud-basic.md │ │ │ │ ├── word-cloud-clip.md │ │ │ │ ├── word-cloud-enlarge.md │ │ │ │ ├── word-cloud-format.md │ │ │ │ ├── word-cloud-no-valueField.md │ │ │ │ ├── word-cloud-rotate.md │ │ │ │ ├── word-cloud-shape-basis.md │ │ │ │ ├── word-cloud-shape-custom-color.md │ │ │ │ ├── word-cloud-shape-geometry.md │ │ │ │ ├── word-cloud-shape-rotate.md │ │ │ │ ├── word-cloud-shape-text.md │ │ │ │ └── word-cloud-shrink.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── area-chart │ │ │ ├── area-style.md │ │ │ ├── area-with-marker.md │ │ │ ├── basic-area.md │ │ │ ├── horizontal-area.md │ │ │ ├── negative-values-area.md │ │ │ ├── null-value-area.md │ │ │ ├── percentage-stacked-area.md │ │ │ ├── range-area.md │ │ │ ├── segment-range-area.md │ │ │ ├── smoothed-area.md │ │ │ ├── stacked-area.md │ │ │ ├── stacked-dash-area.md │ │ │ ├── step-area.md │ │ │ ├── stream-graph.md │ │ │ └── unstacked-area.md │ │ │ ├── axis │ │ │ ├── animation.md │ │ │ ├── axis-band-size.md │ │ │ ├── axis-break.md │ │ │ ├── axis-inner-offset.md │ │ │ ├── axis-label-autoHide-and-autoRotate.md │ │ │ ├── axis-label-autoHide.md │ │ │ ├── axis-label-autoLimit.md │ │ │ ├── axis-label-autoRotate.md │ │ │ ├── axis-label-autoWrap.md │ │ │ ├── axis-richtext-label.md │ │ │ ├── axis-sync.md │ │ │ ├── axis-vertical-label.md │ │ │ ├── disable-sampling.md │ │ │ ├── flush.md │ │ │ ├── grid-style.md │ │ │ ├── interactive.md │ │ │ ├── inverse.md │ │ │ ├── label-container-align.md │ │ │ ├── log-axis.md │ │ │ ├── multiple-layers-of-axis-1.md │ │ │ ├── multiple-layers-of-axis.md │ │ │ ├── on-zero.md │ │ │ ├── polar.md │ │ │ ├── style.md │ │ │ ├── subtick-and-subgrid.md │ │ │ └── symlog-axis.md │ │ │ ├── bar-chart │ │ │ ├── bar-background.md │ │ │ ├── bar-break-by-axis.md │ │ │ ├── bar-customized-label.md │ │ │ ├── bar-functional-label-position.md │ │ │ ├── bar-markPoint.md │ │ │ ├── bar-poly-regression-line.md │ │ │ ├── basic-bar.md │ │ │ ├── basic-column.md │ │ │ ├── bi-direction-bar.md │ │ │ ├── bi-direction-stack-column.md │ │ │ ├── gradient-column.md │ │ │ ├── group-bar-with-barGapInGroup.md │ │ │ ├── group-bar-with-padding.md │ │ │ ├── group-bar.md │ │ │ ├── group-column.md │ │ │ ├── group-stack-column.md │ │ │ ├── group-stack-percentage-column.md │ │ │ ├── population-pyramid.md │ │ │ ├── stack-column.md │ │ │ ├── stack-percentage-bar.md │ │ │ ├── stack-percentage-column.md │ │ │ └── tgi-bar.md │ │ │ ├── box-plot │ │ │ ├── basic-box-plot.md │ │ │ ├── box-plot-style.md │ │ │ └── grouped-box-plot.md │ │ │ ├── brush │ │ │ ├── brush-datazoom.md │ │ │ ├── polygon-brush.md │ │ │ ├── rect-linked-brush.md │ │ │ └── x-linked-brush.md │ │ │ ├── calendar │ │ │ ├── calendar-basic.md │ │ │ └── calendar-custom-event.md │ │ │ ├── candlestick-chart │ │ │ ├── candlestick-basic.md │ │ │ ├── candlestick-with-MA.md │ │ │ └── candlestick-with-volume.md │ │ │ ├── chart-3d │ │ │ ├── area3d.md │ │ │ ├── bar3d.md │ │ │ ├── funnel3d.md │ │ │ ├── line3d.md │ │ │ ├── pie3d.md │ │ │ ├── scatter3d.md │ │ │ └── wordcloud3d.md │ │ │ ├── circle-packing-chart │ │ │ ├── basic-circle-packing.md │ │ │ ├── bubble-circle-packing.md │ │ │ ├── circle-packing-multiple-roots.md │ │ │ └── circle-packing-padding.md │ │ │ ├── combination │ │ │ ├── bar-autoBandSize.md │ │ │ ├── bar-combine.md │ │ │ ├── bar-line.md │ │ │ ├── col-line.md │ │ │ ├── col-pie.md │ │ │ ├── dual-axis.md │ │ │ ├── easing-visualization.md │ │ │ ├── line-pie.md │ │ │ ├── polar-combine.md │ │ │ ├── scatter-combine.md │ │ │ └── single-region.md │ │ │ ├── correlation-chart │ │ │ └── correlation-chart.md │ │ │ ├── crosshair │ │ │ ├── line.md │ │ │ ├── multiple-region.md │ │ │ ├── polar-line.md │ │ │ ├── polar-rect.md │ │ │ └── rect.md │ │ │ ├── custom │ │ │ ├── bar-image-extension.md │ │ │ ├── business-funnel.md │ │ │ ├── custom-shape.md │ │ │ ├── mark.md │ │ │ ├── pie-extend-bars.md │ │ │ ├── pie-extension-icon.md │ │ │ ├── pie-extension.md │ │ │ ├── rect-html.md │ │ │ ├── series-extension.md │ │ │ └── state-sort.md │ │ │ ├── data-zoom │ │ │ ├── data-zoom-big-data.md │ │ │ ├── data-zoom-lock.md │ │ │ ├── data-zoom-polar.md │ │ │ ├── data-zoom-span.md │ │ │ ├── filter-mode-axis.md │ │ │ ├── preview-data.md │ │ │ └── state-with-data.md │ │ │ ├── data │ │ │ ├── basic-data.md │ │ │ ├── data-fields-alias.md │ │ │ ├── data-fields-domain.md │ │ │ ├── data-fields-sort.md │ │ │ └── data-filter.md │ │ │ ├── extension-chart │ │ │ ├── sequence-scatter-kde.md │ │ │ ├── sequence-scatter-link-classification.md │ │ │ └── sequence-scatter-link-neighborhood.md │ │ │ ├── funnel-chart │ │ │ ├── basic-funnel.md │ │ │ ├── comparative-funnel-template.md │ │ │ ├── conversion-funnel.md │ │ │ ├── custom-funnel.md │ │ │ ├── funnel-custom-annotation.md │ │ │ ├── funnel-template.md │ │ │ ├── rect-funnel.md │ │ │ └── transform-funnel.md │ │ │ ├── gantt │ │ │ ├── gantt-basic.md │ │ │ ├── gantt-customLayout.md │ │ │ ├── gantt-dependency-link-create.md │ │ │ ├── gantt-dependency-link-line.md │ │ │ ├── gantt-edit.md │ │ │ ├── gantt-interaction-creation-button.md │ │ │ ├── gantt-interaction-drag-table-width.md │ │ │ ├── gantt-interaction-drag-taskBar.md │ │ │ ├── gantt-table-mergeCell.md │ │ │ └── gantt-taskShowMode.md │ │ │ ├── gauge-chart │ │ │ ├── basic-gauge.md │ │ │ ├── clock.md │ │ │ ├── gauge-gradient.md │ │ │ ├── gauge-progress-tick.md │ │ │ ├── gauge-progress.md │ │ │ ├── gauge-segment-custom-tick.md │ │ │ ├── gauge-segment-tick.md │ │ │ ├── gauge-segment.md │ │ │ └── gauge-track.md │ │ │ ├── gradient │ │ │ ├── area.md │ │ │ ├── bar.md │ │ │ ├── enhancement-gradient-line.md │ │ │ ├── line.md │ │ │ └── scatter.md │ │ │ ├── heatmap-chart │ │ │ └── basic-heatmap.md │ │ │ ├── histogram-chart │ │ │ ├── histogram-basis.md │ │ │ ├── histogram-bin.md │ │ │ ├── histogram-different-bin.md │ │ │ ├── histogram-regression-line.md │ │ │ ├── histogram-stack-h.md │ │ │ └── histogram-stack.md │ │ │ ├── interaction │ │ │ ├── area-chart-element-highlight.md │ │ │ ├── combination-chart-highlight-by-key.md │ │ │ ├── element-active.md │ │ │ ├── highlight-by-legend.md │ │ │ ├── line-chart-element-highlight-by-group.md │ │ │ ├── pie-chart-active-by-legend.md │ │ │ ├── pie-chart-multiple-select.md │ │ │ └── rose-chart-highlight-by-name.md │ │ │ ├── label │ │ │ ├── bar-label-syncState.md │ │ │ ├── bar-label.md │ │ │ ├── combination-chart-label.md │ │ │ ├── label-formatter.md │ │ │ ├── label-mark-tooltip.md │ │ │ ├── line-label.md │ │ │ └── richtext-label.md │ │ │ ├── layout │ │ │ ├── align-self.md │ │ │ ├── custom-layout.md │ │ │ ├── grid-layout.md │ │ │ └── region-relative-overlap.md │ │ │ ├── legend │ │ │ ├── continuous.md │ │ │ ├── custom-data.md │ │ │ ├── custom-interaction.md │ │ │ ├── custom-line-legend.md │ │ │ ├── custom-ui.md │ │ │ ├── discrete-legend-scale.md │ │ │ ├── float.md │ │ │ ├── focus.md │ │ │ ├── multiple-legends.md │ │ │ ├── scrollbar.md │ │ │ └── single-select.md │ │ │ ├── line-chart │ │ │ ├── basic-line.md │ │ │ ├── dash-line.md │ │ │ ├── horizontal-line.md │ │ │ ├── line-axes-padding.md │ │ │ ├── line-custom-state.md │ │ │ ├── line-default-select.md │ │ │ ├── line-overlap.md │ │ │ ├── line-sampling.md │ │ │ ├── multi-line.md │ │ │ ├── null-value-line.md │ │ │ ├── percentage-stacked-line.md │ │ │ ├── smoothed-line.md │ │ │ ├── stacked-line.md │ │ │ ├── step-line.md │ │ │ └── unstacked-line.md │ │ │ ├── liquid-chart │ │ │ ├── liquid-chart-background.md │ │ │ ├── liquid-chart-reverse.md │ │ │ ├── liquid-chart-shape.md │ │ │ ├── liquid-chart-smart-invert.md │ │ │ ├── liquid-chart-target.md │ │ │ └── liquid-chart.md │ │ │ ├── map-chart │ │ │ ├── basic-map.md │ │ │ ├── map-with-flying-lines.md │ │ │ └── scatter-map.md │ │ │ ├── marker │ │ │ ├── bar-poly-regression-line.md │ │ │ ├── cartesian-mark-area-pos.md │ │ │ ├── cartesian-mark-line-pos.md │ │ │ ├── geo-mark-point.md │ │ │ ├── histogram-regression-line.md │ │ │ ├── mark-area-basic.md │ │ │ ├── mark-area-multi.md │ │ │ ├── mark-area-quadrant.md │ │ │ ├── mark-area-range.md │ │ │ ├── mark-area-with-label.md │ │ │ ├── mark-line-CAGR.md │ │ │ ├── mark-line-axis.md │ │ │ ├── mark-line-basic.md │ │ │ ├── mark-line-color-with-series.md │ │ │ ├── mark-line-coordinates.md │ │ │ ├── mark-line-custom-label-back.md │ │ │ ├── mark-line-hierarchy-diff.md │ │ │ ├── mark-line-multi.md │ │ │ ├── mark-line-part-regression.md │ │ │ ├── mark-line-ref-series.md │ │ │ ├── mark-line-total-diff.md │ │ │ ├── mark-point-basic.md │ │ │ ├── mark-point-image.md │ │ │ ├── polar-mark-area-pos.md │ │ │ ├── polar-mark-line-pos.md │ │ │ ├── polar-mark-line.md │ │ │ ├── polar-mark-point.md │ │ │ ├── scatter-regression-line.md │ │ │ └── trend-line.md │ │ │ ├── mosaic-chart │ │ │ ├── basic-mosaic.md │ │ │ ├── group-mosaic.md │ │ │ └── simple-mosaic.md │ │ │ ├── pattern │ │ │ ├── accessible-column.md │ │ │ ├── accessible-pie.md │ │ │ ├── dynamic-texture-bar.md │ │ │ └── dynamic-texture-progress.md │ │ │ ├── pictogram-chart │ │ │ ├── pictogram-bagua.md │ │ │ ├── pictogram-cat.md │ │ │ ├── pictogram-chinamap.md │ │ │ ├── pictogram-cow.md │ │ │ ├── pictogram-guwen.md │ │ │ ├── pictogram-heart.md │ │ │ ├── pictogram-keyboard.md │ │ │ ├── pictogram-mall.md │ │ │ ├── pictogram-route-swimming.md │ │ │ ├── pictogram-route.md │ │ │ └── pictogram-seat-map.md │ │ │ ├── pie-chart │ │ │ ├── basic-pie.md │ │ │ ├── customized-legend-pie.md │ │ │ ├── linear-color-pie.md │ │ │ ├── nested-pie.md │ │ │ ├── pie-indicator-fitstrategy.md │ │ │ ├── pie-indicator.md │ │ │ ├── pie-label.md │ │ │ ├── radius-scale-pie.md │ │ │ ├── richtext-autoEllipsis.md │ │ │ ├── richtext-autowrap.md │ │ │ ├── ring.md │ │ │ └── smooth-label-line.md │ │ │ ├── pivot-chart │ │ │ ├── pivot-chart-pie.md │ │ │ ├── pivot-chart-radar.md │ │ │ ├── pivot-chart-scatter.md │ │ │ ├── pivot-chart-wordCloud.md │ │ │ └── pivot-chart.md │ │ │ ├── player │ │ │ ├── basic-player.md │ │ │ └── continuous-player.md │ │ │ ├── progress │ │ │ ├── circular-progress-tick.md │ │ │ ├── circular-progress-with-text.md │ │ │ ├── circular-progress.md │ │ │ ├── linear-progress-with-multi-label.md │ │ │ ├── linear-progress-with-target-value.md │ │ │ ├── linear-progress-with-text.md │ │ │ ├── linear-progress.md │ │ │ └── segment-linear-progress.md │ │ │ ├── radar-chart │ │ │ ├── basic-radar.md │ │ │ ├── multiple-radar.md │ │ │ ├── radar-with-innerRadius.md │ │ │ ├── stack-percent-radar.md │ │ │ └── stack-radar.md │ │ │ ├── range-column-chart │ │ │ ├── range-bar.md │ │ │ └── range-column.md │ │ │ ├── rose-chart │ │ │ ├── basic-rose.md │ │ │ ├── rose-grouped.md │ │ │ ├── rose-stacked-group.md │ │ │ └── rose-stacked.md │ │ │ ├── sankey-chart │ │ │ ├── align-nodes-left-sankey.md │ │ │ ├── another-data-structure-sankey.md │ │ │ ├── basic-sankey.md │ │ │ ├── customized-node.md │ │ │ ├── direction-sankey.md │ │ │ ├── hierarchical-sankey.md │ │ │ ├── interection-sankey.md │ │ │ ├── nameKey-sankey.md │ │ │ ├── sankey-with-scrollbar.md │ │ │ └── specified-node.md │ │ │ ├── scatter-chart │ │ │ ├── basic-scatter.md │ │ │ ├── bubble-scatter.md │ │ │ ├── jitter-scatter.md │ │ │ ├── one-dimension-scatter.md │ │ │ ├── scatter-regression-line.md │ │ │ ├── scatter-shape.md │ │ │ └── stack-scatter.md │ │ │ ├── scrollbar │ │ │ ├── basic-scrollbar-bar-chart.md │ │ │ ├── roam-drag-zoom.md │ │ │ ├── roam-scroll.md │ │ │ ├── scrollbar-line-chart.md │ │ │ └── scrollbar-specified-value.md │ │ │ ├── sequence-chart │ │ │ ├── NBA-player-event.md │ │ │ └── social-media-event.md │ │ │ ├── storytelling │ │ │ ├── appear-animation-config.md │ │ │ ├── area-streamlight.md │ │ │ ├── bar-highlight-animation.md │ │ │ ├── bar-oneByOne-group.md │ │ │ ├── bar-oneByOne-rect.md │ │ │ ├── bar-oneByOne-series.md │ │ │ ├── bar-to-pie.md │ │ │ ├── bar-to-scatter.md │ │ │ ├── disappear-animation-dissolve-config.md │ │ │ ├── disappear-animation-glitch-config.md │ │ │ ├── dynamic-comparative-bar-chart.md │ │ │ ├── dynamic-line-chart.md │ │ │ ├── dynamic-rose-chart.md │ │ │ ├── pie-preset-animation.md │ │ │ ├── ranking-bar.md │ │ │ ├── ring-carousel-animation.md │ │ │ ├── simple-animation-arrangement.md │ │ │ ├── timeline-scatter.md │ │ │ └── weekly-activity.md │ │ │ ├── sunburst-chart │ │ │ ├── basic-sunburst.md │ │ │ ├── sunburst-auto-label.md │ │ │ └── sunburst-layout.md │ │ │ ├── theme │ │ │ ├── theme-style.md │ │ │ └── theme-switch.md │ │ │ ├── title │ │ │ ├── basic-title.md │ │ │ ├── richText-title.md │ │ │ └── style-title.md │ │ │ ├── tooltip │ │ │ ├── area-mark-tooltip.md │ │ │ ├── bar-group-tooltip.md │ │ │ ├── custom-mark-tooltip.md │ │ │ ├── custom-tooltip-handler.md │ │ │ ├── custom-tooltip.md │ │ │ ├── enterable-tooltip.md │ │ │ ├── format-method.md │ │ │ ├── line-group-tooltip.md │ │ │ └── time-axis-tooltip.md │ │ │ ├── treemap-chart │ │ │ ├── basic-treemap.md │ │ │ └── treemap-show-parent-level.md │ │ │ ├── venn-chart │ │ │ ├── venn-chart-hollow.md │ │ │ └── venn-chart.md │ │ │ ├── vscreen │ │ │ ├── area-growth.md │ │ │ ├── area-load.md │ │ │ ├── bar-highlight.md │ │ │ ├── bar-streamlight.md │ │ │ ├── bilateral-growth.md │ │ │ ├── column-parallel-highlight.md │ │ │ ├── column-parallel-streamlight.md │ │ │ ├── double-axis-load.md │ │ │ ├── funnel.md │ │ │ ├── gauge.md │ │ │ ├── line-growth.md │ │ │ ├── line-load.md │ │ │ ├── liquid.md │ │ │ ├── pie-relocate.md │ │ │ ├── pie-scale.md │ │ │ ├── radar-ridial.md │ │ │ ├── sankey.md │ │ │ ├── scatter-ripple.md │ │ │ └── word-cloud-scale.md │ │ │ ├── waterfall │ │ │ ├── basic-waterfall.md │ │ │ ├── collect-waterfall.md │ │ │ ├── direction-waterfall.md │ │ │ └── stack-waterfall.md │ │ │ └── word-cloud-chart │ │ │ ├── word-cloud-basic.md │ │ │ ├── word-cloud-clip.md │ │ │ ├── word-cloud-enlarge.md │ │ │ ├── word-cloud-format.md │ │ │ ├── word-cloud-no-valueField.md │ │ │ ├── word-cloud-rotate.md │ │ │ ├── word-cloud-shape-basis.md │ │ │ ├── word-cloud-shape-custom-color.md │ │ │ ├── word-cloud-shape-geometry.md │ │ │ ├── word-cloud-shape-rotate.md │ │ │ ├── word-cloud-shape-text.md │ │ │ └── word-cloud-shrink.md │ ├── faq │ │ ├── en │ │ │ ├── 0-template.md │ │ │ ├── 1- Does the tooltip support changing the background color.md │ │ │ ├── 10- How to change the color of the legend.md │ │ │ ├── 100-How can Tooltip achieve multi column display in VChart.md │ │ │ ├── 101- How to configure nested pie charts in VChart.md │ │ │ ├── 102-How to automatically update chart data in React components.md │ │ │ ├── 103-How to change the hover display content when the mouse is moved into the chart area.md │ │ │ ├── 104- Issues with x-axis data overlapping and y-axis data not displaying when using the vchart library.md │ │ │ ├── 105- How to customize Tooltip shapes.md │ │ │ ├── 106- How to set a default selection for a sector in a VChart pie chart.md │ │ │ ├── 107-How can we still make data points respond to hover events without displaying point graphics in area chart.md │ │ │ ├── 108-How to configure the axis scale alignment of a two-axis graph.md │ │ │ ├── 109-How to implement a combination of line chart and stacked bar chart.md │ │ │ ├── 11- How to display a color block area within a specified x-axis range in the chart.md │ │ │ ├── 110-How to customize pointer style in a gauge chart.md │ │ │ ├── 111- How to sort x-axis labels in a combination chart.md │ │ │ ├── 112-How to add transition animations when clicking the legend of a funnel chart.md │ │ │ ├── 113- How to change bar width in a bar chart.md │ │ │ ├── 114-How to add a title and subtitle to a chart in VChart.md │ │ │ ├── 115-How to modify the text color of the percentage of the funnel chart.md │ │ │ ├── 116-How to add background color to the bottom of ring chart when it is set with gaps.md │ │ │ ├── 117-How to modify the style of the legend element when the mouse is hovering over the legend.md │ │ │ ├── 118- How to implement point hover effects in the vchart library.md │ │ │ ├── 119- How to bind click events to pie chart labels.md │ │ │ ├── 12- How to set grid lines on VChart axes to dashed lines.md │ │ │ ├── 120- How to set an adaptive y-axis range in a line chart.md │ │ │ ├── 121- How to customize the rich text axis label style in radar charts.md │ │ │ ├── 122-How to customize the theme for a chart.md │ │ │ ├── 123-Can we add a horizontal line for the average value to the data.md │ │ │ ├── 124-Is there an API on the mini program that prompts the location of data points when touching the screen with your finger.md │ │ │ ├── 125- How to make the word cloud fully fill the outer container.md │ │ │ ├── 126- Line chart in combo chart is obscured, preventing tooltip hover.md │ │ │ ├── 127- How to set the x and y axis labels and bar size in vchart bar charts.md │ │ │ ├── 128- How to achieve overlap of bar chart data in the same dimension rather than stacking.md │ │ │ ├── 129-How to customize Tooltip in dual axis chart.md │ │ │ ├── 13-How does the label of the auxiliary line automatically change lines.md │ │ │ ├── 130-How to configure the colors of different line segments in a line chart.md │ │ │ ├── 131- Can the tick range of a continuous axis be configured to closely match the data range.md │ │ │ ├── 132- How to customize slice colors in VChart pie charts.md │ │ │ ├── 133-How to control the display order of discrete legends.md │ │ │ ├── 134-How does the Ring with Indicator Card dynamically update indicator values.md │ │ │ ├── 135-How to customize the colors of bars based on values in a bar chart.md │ │ │ ├── 136- How to prevent the stroke from being obscured when hovering over pie chart sectors.md │ │ │ ├── 137- Does the bar chart support setting colors for individual columns.md │ │ │ ├── 138-How to customize the font size of words in Word Cloud Chart.md │ │ │ ├── 139-How to configure chart adaptive container width and height.md │ │ │ ├── 14-How to customize the label text content, color, and layout of a pie chart.md │ │ │ ├── 140- How to configure the highlight effect in a Sankey diagram.md │ │ │ ├── 141- How to draw a multi-row layout line chart.md │ │ │ ├── 142- How to add tracking points in VChart based on Tooltip behavior.md │ │ │ ├── 143- How to set the maximum number of labels on the X and Y axes.md │ │ │ ├── 144- How does the tooltip layer support the display of total data.md │ │ │ ├── 146-How to configure the transform width of the funnel chart.md │ │ │ ├── 147-How to achieve background segmentation and rounded corner effect in a gauge chart.md │ │ │ ├── 148-How to configure horizontal scrollbars when there is too much data in a bar chart in an applet.md │ │ │ ├── 149- How to obtain the relative position of the brush in the coordinate system in the vchart library.md │ │ │ ├── 15- How to implement line breaks in pie chart labels.md │ │ │ ├── 150- How to format axis labels.md │ │ │ ├── 151-How does the legend component limit the width of the graph.md │ │ │ ├── 152- How to display labels on multiple lines.md │ │ │ ├── 153- How to sort data by specified fields.md │ │ │ ├── 154- Segmented display of bar progress chart.md │ │ │ ├── 155- How to adjust the spacing between axis labels in vchart.md │ │ │ ├── 156- How to assign different colors to multiple lines in a line chart.md │ │ │ ├── 157- How to individually configure legend styles and change graphic shapes in VChart.md │ │ │ ├── 158- How to configure the hover state of graphical elements.md │ │ │ ├── 159-How to configure Tooltip to automatically wrap text.md │ │ │ ├── 16-How to achieve permanent display of chart tooltips.md │ │ │ ├── 160-How to disable the default interactive behavior of legends.md │ │ │ ├── 161-How to customize the axis label display spacing.md │ │ │ ├── 162-How to define the mapping relationship of the axes for the combination of line chart and stacked column chart.md │ │ │ ├── 163- How to limit the number of lines in a Tooltip.md │ │ │ ├── 164-How to use vchart to display charts in Notebook.md │ │ │ ├── 165-How to configure the default selection effect of the legend component.md │ │ │ ├── 166- Does VChart's multi-group bar chart support multi-layer axis labels.md │ │ │ ├── 167-How to combine percentage bar and TGI chart.md │ │ │ ├── 168-How do I set up some lines to follow the left axis, while the others follow the right axis in a line chart.md │ │ │ ├── 169-How to set the order of the chart tooltip display content.md │ │ │ ├── 17- How to use tooltips and the x-axis in the vchart library.md │ │ │ ├── 170- How to set different colors for each bar in a bar chart.md │ │ │ ├── 171- How to achieve multi-group bar charts and highlight interactions based on grouping dimensions.md │ │ │ ├── 172- Can the bar series listen to event callbacks.md │ │ │ ├── 173- How to remove axis tick values.md │ │ │ ├── 174-How to achieve a bar chart similar to the stacked column chart.md │ │ │ ├── 175-How to define the number of decimal places of a value displayed by a label in VChart.md │ │ │ ├── 176-How to listen to the click event of the histogram to customize the style of the column.md │ │ │ ├── 177-How to get the data point information in a click event using react-vchart.md │ │ │ ├── 178- How to set different fill colors based on groups in a radar chart.md │ │ │ ├── 179- Bar chart value labels aligned to the right display.md │ │ │ ├── 18-How to truncate, wrap, or perform other formatting effects on axis labels in charts.md │ │ │ ├── 180-How to use charts libraries in Vue.md │ │ │ ├── 181- How to format the tooltip in a VChart radar chart.md │ │ │ ├── 182- How to assign different colors to a line in VChart.md │ │ │ ├── 183- Can the unit of the y-axis be configured without a function.md │ │ │ ├── 184-How to customize the shape and text style of the legend.md │ │ │ ├── 185- How to set the title font size to semi's heading-4 in vchart.md │ │ │ ├── 187- How to listen to events on data dimensions and retrieve corresponding data.md │ │ │ ├── 188- In vchart, how to set the legend not to follow gradient colors and draw legends with rounded rectangles.md │ │ │ ├── 189-How to customize the axis scale value of a gauge chart.md │ │ │ ├── 19-How to configure gradient colors for area charts.md │ │ │ ├── 190- How to draw a dual-axis chart.md │ │ │ ├── 191-How to customize the position of gauge indicator in VChart.md │ │ │ ├── 192-How can I customize colors based on data values in a map chart.md │ │ │ ├── 193-How to clear charts and data.md │ │ │ ├── 194-How to customize the text content of the legend.md │ │ │ ├── 195- How to display all labels on the x-axis.md │ │ │ ├── 196-How to customize legend shapes.md │ │ │ ├── 197- How to configure animations in VChart combination charts.md │ │ │ ├── 198- How to set the shape type of Legend and Tooltip in VChart line charts.md │ │ │ ├── 199-Can users click on data points within the VChart to show a list of actions.md │ │ │ ├── 2-How can I customize the display of fields in data in Tooltip in VChart.md │ │ │ ├── 20- How to add graphics to axis labels.md │ │ │ ├── 200-When hovering over a donut chart, how to configure the style of donut chart.md │ │ │ ├── 201-How to configure the scope of the crosshair auxiliary line.md │ │ │ ├── 202- Does VChart support setting graphical elements to the selected state.md │ │ │ ├── 203- How to limit the width of tooltip content.md │ │ │ ├── 204-How to set the color and transparency of individual words inside the word cloud based on their values.md │ │ │ ├── 205-How can chart tooltips be configured to display dimensions and measures as single or multiple rows.md │ │ │ ├── 206- Can vchart multi-line charts limit the default rendered lines.md │ │ │ ├── 207- How to trigger chart tooltips on mobile devices.md │ │ │ ├── 208-How to configure the position of the markLine text label, can it be configured to display at the starting point, end point or in the middle of the line segment.md │ │ │ ├── 209- Can the tip displayed above an overly long label when hovering be configured to change background and text colors.md │ │ │ ├── 21- How to adjust the display order of contents in the Tooltip of a VChart stacked bar chart.md │ │ │ ├── 210- How to set the time interval in a timeline.md │ │ │ ├── 211-How to configure it to ignore part of the display content.md │ │ │ ├── 212- What are the methods for data sampling in VChart charts.md │ │ │ ├── 22- How to center the labels in a bar chart.md │ │ │ ├── 23- How to customize legend shapes.md │ │ │ ├── 24- How to configure a custom theme in VChart.md │ │ │ ├── 25- How to listen to DataZoom operations.md │ │ │ ├── 26- How to render axis labels using HTML.md │ │ │ ├── 27-How to customize the mounting node of the tooltip component in VChart.md │ │ │ ├── 28- How to configure a correlation scatterplot in VChart.md │ │ │ ├── 29- How to control layout spacing of charts and components within the chart.md │ │ │ ├── 3- How to solve the issue of line chart bifurcation after combining with stacked line and bidirectional bar charts.md │ │ │ ├── 30-How to add prompt information to the legend.md │ │ │ ├── 31- Can VChart be server-side rendered.md │ │ │ ├── 32- How to configure the points in a line chart to be sparser in vchart.md │ │ │ ├── 33-How to customize the tooltip display content in a dual axis chart.md │ │ │ ├── 34- How to left-align bar chart labels and keep the style consistent.md │ │ │ ├── 35- How to disable chart interaction.md │ │ │ ├── 36-How to configure a DataZoom component in a chart that can be used on a mobile device.md │ │ │ ├── 37-When the data is all 0, how to configure the position of the x-axis.md │ │ │ ├── 38-How does the label at the center of the ring chart adapt to the size of the ring.md │ │ │ ├── 39-How to customize the length of the pie chart guide line.md │ │ │ ├── 4-The time interval of the coordinate axis scale is given.md │ │ │ ├── 41- Does the line chart support setting background colors based on Y-axis segments.md │ │ │ ├── 42-How can VChart set the number of display bars for Tooltip, and support effects such as scrolling, pagination, and merged display when there is too much data.md │ │ │ ├── 43- Does the thumbnail axis handle shape support SVG.md │ │ │ ├── 44-How to customize the image and color of a legend.md │ │ │ ├── 45-How to control the display order of stacking and legends and add display of total information on the tooltip.md │ │ │ ├── 46- How to display all words in a word cloud on a small canvas.md │ │ │ ├── 47- How to configure tooltip and legend shapes as rounded rectangles.md │ │ │ ├── 48-How to customize the position and offset of the tooltip in the chart.md │ │ │ ├── 49- How to configure the hierarchy in a combination chart.md │ │ │ ├── 5- How to position the chart on the far left of the canvas.md │ │ │ ├── 50- How to adjust the layer order of lines in a line chart.md │ │ │ ├── 51-How to use charts libraries in React.md │ │ │ ├── 52- Can the legend shape be set to a rectangle.md │ │ │ ├── 53- How to configure axis unit display on the axes of a line chart.md │ │ │ ├── 54- How to configure the outer border of graphical elements when hovering on a bar chart.md │ │ │ ├── 55- How to modify the marker graphic of tooltip content items.md │ │ │ ├── 56- How to set the bar width in a bar chart in VChart.md │ │ │ ├── 57-When listening to events at the Chart level, is it possible to get the type of element that was clicked via the event parameter, similar to the target parameter in dom.md │ │ │ ├── 58- How to clear the selection in the onbrushEnd event when using vchart.md │ │ │ ├── 59- What are the methods for formatting chart labels in VChart.md │ │ │ ├── 6- How to export charts as images.md │ │ │ ├── 60- How to configure the size of a pie chart in VChart.md │ │ │ ├── 61-How to generate a simplified mini line chart.md │ │ │ ├── 62-How to achieve reverse y-axis effect.md │ │ │ ├── 63-How to configure the range of the axis.md │ │ │ ├── 64-How to display the center value when selecting an arc in a pie chart.md │ │ │ ├── 65- How to prevent displaying abbreviated tooltips when custom tooltips are already set.md │ │ │ ├── 66-How do I customize the position of the tooltip to avoid occlusion.md │ │ │ ├── 67- How to set the axis width in VChart.md │ │ │ ├── 68- Is there a way to deselect all line chart contents currently set to display by default (e.g., a button to hide all).md │ │ │ ├── 69- How to select only the current item when clicking a legend.md │ │ │ ├── 7- How to draw combination charts in React.md │ │ │ ├── 70-How can line and bar charts be displayed at the same time.md │ │ │ ├── 71- Does the tree map support configuring the style when hovering.md │ │ │ ├── 72-How to set column width in bar chart.md │ │ │ ├── 73- In the vchart library, why does the area chart's Y-axis display lower values higher.md │ │ │ ├── 74- How to adjust bar spacing in a bar chart.md │ │ │ ├── 75-How to display the legend title and legend with left-right separation in the same row.md │ │ │ ├── 76-How do I set the scrollbars for the common chart.md │ │ │ ├── 77-How to customize the display text content of the funnel chart.md │ │ │ ├── 78-How do I configure the default scroll position for chart scrollbars.md │ │ │ ├── 79- How to achieve coordinated display of positions in other charts when moving the mouse in the vchart library.md │ │ │ ├── 8- Does the tooltip support custom two-line display content.md │ │ │ ├── 80-How can the background color of the funnel chart's conversion layers be modified.md │ │ │ ├── 81- How to solve the issue of the upper area chart obscuring the lower point chart in a combo chart.md │ │ │ ├── 82-How to use chart components in Taro.md │ │ │ ├── 83-How to Customize Colors for Different Series in Dual-Axis Chart.md │ │ │ ├── 84- How to configure the style of legend pager arrows in VChart.md │ │ │ ├── 85-How to display scales at several points on the x-axis of an area chart.md │ │ │ ├── 86- How to emphasize a specific point in a vchart line chart.md │ │ │ ├── 87- How to handle incomplete label display in VChart pie charts.md │ │ │ ├── 88- How to customize pie chart labels.md │ │ │ ├── 89- How to retrieve all data of the same dimension as the clicked bar in a stacked bar chart.md │ │ │ ├── 9- How to display 'sum' in the tooltip of a line chart.md │ │ │ ├── 90-How can VChart achieve a profile effect similar to ECharts.md │ │ │ ├── 91- How to add custom items to a tooltip.md │ │ │ ├── 92- How to set a segment of a dashed line in a line chart.md │ │ │ ├── 93-How to set the style of the line segments in a line chart, such as dashed at the end.md │ │ │ ├── 94- How to set the background width during bar chart interaction.md │ │ │ ├── 95- How to achieve edge-aligned x-axis labels in a trend chart.md │ │ │ ├── 96-How to display the complete information of the legend when hovering.md │ │ │ ├── 97-How to use chart library in mini program.md │ │ │ ├── 98- How to customize legends in React.md │ │ │ └── 99- Can a line chart be segmented.md │ │ ├── menu.json │ │ └── zh │ │ │ ├── 0-template.md │ │ │ ├── 1- Does the tooltip support changing the background color.md │ │ │ ├── 10- How to change the color of the legend.md │ │ │ ├── 100-How can Tooltip achieve multi column display in VChart.md │ │ │ ├── 101- How to configure nested pie charts in VChart.md │ │ │ ├── 102-How to automatically update chart data in React components.md │ │ │ ├── 103-How to change the hover display content when the mouse is moved into the chart area.md │ │ │ ├── 104- Issues with x-axis data overlapping and y-axis data not displaying when using the vchart library.md │ │ │ ├── 105- How to customize Tooltip shapes.md │ │ │ ├── 106- How to set a default selection for a sector in a VChart pie chart.md │ │ │ ├── 107-How can we still make data points respond to hover events without displaying point graphics in area chart.md │ │ │ ├── 108-How to configure the axis scale alignment of a two-axis graph.md │ │ │ ├── 109-How to implement a combination of line chart and stacked bar chart.md │ │ │ ├── 11- How to display a color block area within a specified x-axis range in the chart.md │ │ │ ├── 110-How to customize pointer style in a gauge chart.md │ │ │ ├── 111- How to sort x-axis labels in a combination chart.md │ │ │ ├── 112-How to add transition animations when clicking the legend of a funnel chart.md │ │ │ ├── 113- How to change bar width in a bar chart.md │ │ │ ├── 114-How to add a title and subtitle to a chart in VChart.md │ │ │ ├── 115-How to modify the text color of the percentage of the funnel chart.md │ │ │ ├── 116-How to add background color to the bottom of ring chart when it is set with gaps.md │ │ │ ├── 117-How to modify the style of the legend element when the mouse is hovering over the legend.md │ │ │ ├── 118- How to implement point hover effects in the vchart library.md │ │ │ ├── 119- How to bind click events to pie chart labels.md │ │ │ ├── 12- How to set grid lines on VChart axes to dashed lines.md │ │ │ ├── 120- How to set an adaptive y-axis range in a line chart.md │ │ │ ├── 121- How to customize the rich text axis label style in radar charts.md │ │ │ ├── 122-How to customize the theme for a chart.md │ │ │ ├── 123-Can we add a horizontal line for the average value to the data.md │ │ │ ├── 124-Is there an API on the mini program that prompts the location of data points when touching the screen with your finger.md │ │ │ ├── 125- How to make the word cloud fully fill the outer container.md │ │ │ ├── 126- Line chart in combo chart is obscured, preventing tooltip hover.md │ │ │ ├── 127- How to set the x and y axis labels and bar size in vchart bar charts.md │ │ │ ├── 128- How to achieve overlap of bar chart data in the same dimension rather than stacking.md │ │ │ ├── 129-How to customize Tooltip in dual axis chart.md │ │ │ ├── 13-How does the label of the auxiliary line automatically change lines.md │ │ │ ├── 130-How to configure the colors of different line segments in a line chart.md │ │ │ ├── 131- Can the tick range of a continuous axis be configured to closely match the data range.md │ │ │ ├── 132- How to customize slice colors in VChart pie charts.md │ │ │ ├── 133-How to control the display order of discrete legends.md │ │ │ ├── 134-How does the Ring with Indicator Card dynamically update indicator values.md │ │ │ ├── 135-How to customize the colors of bars based on values in a bar chart.md │ │ │ ├── 136- How to prevent the stroke from being obscured when hovering over pie chart sectors.md │ │ │ ├── 137- Does the bar chart support setting colors for individual columns.md │ │ │ ├── 138-How to customize the font size of words in Word Cloud Chart.md │ │ │ ├── 139-How to configure chart adaptive container width and height.md │ │ │ ├── 14-How to customize the label text content, color, and layout of a pie chart.md │ │ │ ├── 140- How to configure the highlight effect in a Sankey diagram.md │ │ │ ├── 141- How to draw a multi-row layout line chart.md │ │ │ ├── 142- How to add tracking points in VChart based on Tooltip behavior.md │ │ │ ├── 143- How to set the maximum number of labels on the X and Y axes.md │ │ │ ├── 144- How does the tooltip layer support the display of total data.md │ │ │ ├── 145- How to show the full content of abbreviated text when hovering with the mouse.md │ │ │ ├── 146-How to configure the transform width of the funnel chart.md │ │ │ ├── 147-How to achieve background segmentation and rounded corner effect in a gauge chart.md │ │ │ ├── 148-How to configure horizontal scrollbars when there is too much data in a bar chart in an applet.md │ │ │ ├── 149- How to obtain the relative position of the brush in the coordinate system in the vchart library.md │ │ │ ├── 15- How to implement line breaks in pie chart labels.md │ │ │ ├── 150- How to format axis labels.md │ │ │ ├── 151-How does the legend component limit the width of the graph.md │ │ │ ├── 152- How to display labels on multiple lines.md │ │ │ ├── 153- How to sort data by specified fields.md │ │ │ ├── 154- Segmented display of bar progress chart.md │ │ │ ├── 155- How to adjust the spacing between axis labels in vchart.md │ │ │ ├── 156- How to assign different colors to multiple lines in a line chart.md │ │ │ ├── 157- How to individually configure legend styles and change graphic shapes in VChart.md │ │ │ ├── 158- How to configure the hover state of graphical elements.md │ │ │ ├── 159-How to configure Tooltip to automatically wrap text.md │ │ │ ├── 16-How to achieve permanent display of chart tooltips.md │ │ │ ├── 160-How to disable the default interactive behavior of legends.md │ │ │ ├── 161-How to customize the axis label display spacing.md │ │ │ ├── 162-How to define the mapping relationship of the axes for the combination of line chart and stacked column chart.md │ │ │ ├── 163- How to limit the number of lines in a Tooltip.md │ │ │ ├── 164-How to use vchart to display charts in Notebook.md │ │ │ ├── 165-How to configure the default selection effect of the legend component.md │ │ │ ├── 166- Does VChart's multi-group bar chart support multi-layer axis labels.md │ │ │ ├── 167-How to combine percentage bar and TGI chart.md │ │ │ ├── 168-How do I set up some lines to follow the left axis, while the others follow the right axis in a line chart.md │ │ │ ├── 169-How to set the order of the chart tooltip display content.md │ │ │ ├── 17- How to use tooltips and the x-axis in the vchart library.md │ │ │ ├── 170- How to set different colors for each bar in a bar chart.md │ │ │ ├── 171- How to achieve multi-group bar charts and highlight interactions based on grouping dimensions.md │ │ │ ├── 172- Can the bar series listen to event callbacks.md │ │ │ ├── 173- How to remove axis tick values.md │ │ │ ├── 174-How to achieve a bar chart similar to the stacked column chart.md │ │ │ ├── 175-How to define the number of decimal places of a value displayed by a label in VChart.md │ │ │ ├── 176-How to listen to the click event of the histogram to customize the style of the column.md │ │ │ ├── 177-How to get the data point information in a click event using react-vchart.md │ │ │ ├── 178- How to set different fill colors based on groups in a radar chart.md │ │ │ ├── 179- Bar chart value labels aligned to the right display.md │ │ │ ├── 18-How to truncate, wrap, or perform other formatting effects on axis labels in charts.md │ │ │ ├── 180-How to use charts libraries in Vue.md │ │ │ ├── 181- How to format the tooltip in a VChart radar chart.md │ │ │ ├── 182- How to assign different colors to a line in VChart.md │ │ │ ├── 183- Can the unit of the y-axis be configured without a function.md │ │ │ ├── 184-How to customize the shape and text style of the legend.md │ │ │ ├── 185- How to set the title font size to semi's heading-4 in vchart.md │ │ │ ├── 186- How to add custom content to the bottom of a tooltip card in vChart.md │ │ │ ├── 187- How to listen to events on data dimensions and retrieve corresponding data.md │ │ │ ├── 188- In vchart, how to set the legend not to follow gradient colors and draw legends with rounded rectangles.md │ │ │ ├── 189-How to customize the axis scale value of a gauge chart.md │ │ │ ├── 19-How to configure gradient colors for area charts.md │ │ │ ├── 190- How to draw a dual-axis chart.md │ │ │ ├── 191-How to customize the position of gauge indicator in VChart.md │ │ │ ├── 192-How can I customize colors based on data values in a map chart.md │ │ │ ├── 193-How to clear charts and data.md │ │ │ ├── 194-How to customize the text content of the legend.md │ │ │ ├── 195- How to display all labels on the x-axis.md │ │ │ ├── 196-How to customize legend shapes.md │ │ │ ├── 197- How to configure animations in VChart combination charts.md │ │ │ ├── 198- How to set the shape type of Legend and Tooltip in VChart line charts.md │ │ │ ├── 199-Can users click on data points within the VChart to show a list of actions.md │ │ │ ├── 2-How can I customize the display of fields in data in Tooltip in VChart.md │ │ │ ├── 20- How to add graphics to axis labels.md │ │ │ ├── 200-When hovering over a donut chart, how to configure the style of donut chart.md │ │ │ ├── 201-How to configure the scope of the crosshair auxiliary line.md │ │ │ ├── 202- Does VChart support setting graphical elements to the selected state.md │ │ │ ├── 203- How to limit the width of tooltip content.md │ │ │ ├── 204-How to set the color and transparency of individual words inside the word cloud based on their values.md │ │ │ ├── 205-How can chart tooltips be configured to display dimensions and measures as single or multiple rows.md │ │ │ ├── 206- Can vchart multi-line charts limit the default rendered lines.md │ │ │ ├── 207- How to trigger chart tooltips on mobile devices.md │ │ │ ├── 208-How to configure the position of the markLine text label, can it be configured to display at the starting point, end point or in the middle of the line segment.md │ │ │ ├── 209- Can the tip displayed above an overly long label when hovering be configured to change background and text colors.md │ │ │ ├── 21- How to adjust the display order of contents in the Tooltip of a VChart stacked bar chart.md │ │ │ ├── 210- How to set the time interval in a timeline.md │ │ │ ├── 211-How to configure it to ignore part of the display content.md │ │ │ ├── 212- What are the methods for data sampling in VChart charts.md │ │ │ ├── 22- How to center the labels in a bar chart.md │ │ │ ├── 23- How to customize legend shapes.md │ │ │ ├── 24- How to configure a custom theme in VChart.md │ │ │ ├── 25- How to listen to DataZoom operations.md │ │ │ ├── 26- How to render axis labels using HTML.md │ │ │ ├── 27-How to customize the mounting node of the tooltip component in VChart.md │ │ │ ├── 28- How to configure a correlation scatterplot in VChart.md │ │ │ ├── 29- How to control layout spacing of charts and components within the chart.md │ │ │ ├── 3- How to solve the issue of line chart bifurcation after combining with stacked line and bidirectional bar charts.md │ │ │ ├── 30-How to add prompt information to the legend.md │ │ │ ├── 31- Can VChart be server-side rendered.md │ │ │ ├── 32- How to configure the points in a line chart to be sparser in vchart.md │ │ │ ├── 33-How to customize the tooltip display content in a dual axis chart.md │ │ │ ├── 34- How to left-align bar chart labels and keep the style consistent.md │ │ │ ├── 35- How to disable chart interaction.md │ │ │ ├── 36-How to configure a DataZoom component in a chart that can be used on a mobile device.md │ │ │ ├── 37-When the data is all 0, how to configure the position of the x-axis.md │ │ │ ├── 38-How does the label at the center of the ring chart adapt to the size of the ring.md │ │ │ ├── 39-How to customize the length of the pie chart guide line.md │ │ │ ├── 4-The time interval of the coordinate axis scale is given.md │ │ │ ├── 41- Does the line chart support setting background colors based on Y-axis segments.md │ │ │ ├── 42-How can VChart set the number of display bars for Tooltip, and support effects such as scrolling, pagination, and merged display when there is too much data.md │ │ │ ├── 43- Does the thumbnail axis handle shape support SVG.md │ │ │ ├── 44-How to customize the image and color of a legend.md │ │ │ ├── 45-How to control the display order of stacking and legends and add display of total information on the tooltip.md │ │ │ ├── 46- How to display all words in a word cloud on a small canvas.md │ │ │ ├── 47- How to configure tooltip and legend shapes as rounded rectangles.md │ │ │ ├── 48-How to customize the position and offset of the tooltip in the chart.md │ │ │ ├── 49- How to configure the hierarchy in a combination chart.md │ │ │ ├── 5- How to position the chart on the far left of the canvas.md │ │ │ ├── 50- How to adjust the layer order of lines in a line chart.md │ │ │ ├── 51-How to use charts libraries in React.md │ │ │ ├── 52- Can the legend shape be set to a rectangle.md │ │ │ ├── 53- How to configure axis unit display on the axes of a line chart.md │ │ │ ├── 54- How to configure the outer border of graphical elements when hovering on a bar chart.md │ │ │ ├── 55- How to modify the marker graphic of tooltip content items.md │ │ │ ├── 56- How to set the bar width in a bar chart in VChart.md │ │ │ ├── 57-When listening to events at the Chart level, is it possible to get the type of element that was clicked via the event parameter, similar to the target parameter in dom.md │ │ │ ├── 58- How to clear the selection in the onbrushEnd event when using vchart.md │ │ │ ├── 59- What are the methods for formatting chart labels in VChart.md │ │ │ ├── 6- How to export charts as images.md │ │ │ ├── 60- How to configure the size of a pie chart in VChart.md │ │ │ ├── 61-How to generate a simplified mini line chart.md │ │ │ ├── 62-How to achieve reverse y-axis effect.md │ │ │ ├── 63-How to configure the range of the axis.md │ │ │ ├── 64-How to display the center value when selecting an arc in a pie chart.md │ │ │ ├── 65- How to prevent displaying abbreviated tooltips when custom tooltips are already set.md │ │ │ ├── 66-How do I customize the position of the tooltip to avoid occlusion.md │ │ │ ├── 67- How to set the axis width in VChart.md │ │ │ ├── 68- Is there a way to deselect all line chart contents currently set to display by default (e.g., a button to hide all).md │ │ │ ├── 69- How to select only the current item when clicking a legend.md │ │ │ ├── 7- How to draw combination charts in React.md │ │ │ ├── 70-How can line and bar charts be displayed at the same time.md │ │ │ ├── 71- Does the tree map support configuring the style when hovering.md │ │ │ ├── 72-How to set column width in bar chart.md │ │ │ ├── 73- In the vchart library, why does the area chart's Y-axis display lower values higher.md │ │ │ ├── 74- How to adjust bar spacing in a bar chart.md │ │ │ ├── 75-How to display the legend title and legend with left-right separation in the same row.md │ │ │ ├── 76-How do I set the scrollbars for the common chart.md │ │ │ ├── 77-How to customize the display text content of the funnel chart.md │ │ │ ├── 78-How do I configure the default scroll position for chart scrollbars.md │ │ │ ├── 79- How to achieve coordinated display of positions in other charts when moving the mouse in the vchart library.md │ │ │ ├── 8- Does the tooltip support custom two-line display content.md │ │ │ ├── 80-How can the background color of the funnel chart's conversion layers be modified.md │ │ │ ├── 81- How to solve the issue of the upper area chart obscuring the lower point chart in a combo chart.md │ │ │ ├── 82-How to use chart components in Taro.md │ │ │ ├── 83-How to Customize Colors for Different Series in Dual-Axis Chart.md │ │ │ ├── 84- How to configure the style of legend pager arrows in VChart.md │ │ │ ├── 85-How to display scales at several points on the x-axis of an area chart.md │ │ │ ├── 86- How to emphasize a specific point in a vchart line chart.md │ │ │ ├── 87- How to handle incomplete label display in VChart pie charts.md │ │ │ ├── 88- How to customize pie chart labels.md │ │ │ ├── 89- How to retrieve all data of the same dimension as the clicked bar in a stacked bar chart.md │ │ │ ├── 9- How to display 'sum' in the tooltip of a line chart.md │ │ │ ├── 90-How can VChart achieve a profile effect similar to ECharts.md │ │ │ ├── 91- How to add custom items to a tooltip.md │ │ │ ├── 92- How to set a segment of a dashed line in a line chart.md │ │ │ ├── 93-How to set the style of the line segments in a line chart, such as dashed at the end.md │ │ │ ├── 94- How to set the background width during bar chart interaction.md │ │ │ ├── 95- How to achieve edge-aligned x-axis labels in a trend chart.md │ │ │ ├── 96-How to display the complete information of the legend when hovering.md │ │ │ ├── 97-How to use chart library in mini program.md │ │ │ ├── 98- How to customize legends in React.md │ │ │ └── 99- Can a line chart be segmented.md │ ├── guide │ │ ├── en │ │ │ └── tutorial_docs │ │ │ │ ├── Animation │ │ │ │ ├── Animation_Attributes_and_Settings.md │ │ │ │ ├── Animation_Cases.md │ │ │ │ ├── Animation_Types.md │ │ │ │ └── Configuration_and_Choreography_of_Complex_Animations.md │ │ │ │ ├── Basic │ │ │ │ ├── A_Basic_Spec.md │ │ │ │ ├── DeepSeek_with_Cursor.md │ │ │ │ ├── How_to_Get_VChart.md │ │ │ │ ├── How_to_Import_VChart.md │ │ │ │ └── Quickly_Get_Started_with_VisActor_Using_Trae_Context_Doc.md │ │ │ │ ├── Chart_Concepts │ │ │ │ ├── Axes.md │ │ │ │ ├── Brush.md │ │ │ │ ├── Crosshair.md │ │ │ │ ├── Data │ │ │ │ │ ├── Data_Types_and_Interface.md │ │ │ │ │ └── Dataset_and_Data_Processing.md │ │ │ │ ├── Datazoom.md │ │ │ │ ├── Indicator.md │ │ │ │ ├── Legend.md │ │ │ │ ├── Player.md │ │ │ │ ├── Scrollbar.md │ │ │ │ ├── Series │ │ │ │ │ ├── Composition_and_Effect_of_Series.md │ │ │ │ │ ├── Label.md │ │ │ │ │ └── Mark.md │ │ │ │ ├── Title.md │ │ │ │ ├── Tooltip.md │ │ │ │ ├── Understanding_VChart.md │ │ │ │ └── marker.md │ │ │ │ ├── Chart_Extensions │ │ │ │ ├── about_extensions.md │ │ │ │ ├── candlestick.md │ │ │ │ ├── conversion_funnel.md │ │ │ │ ├── map_label.md │ │ │ │ ├── regression_line.md │ │ │ │ └── series_break.md │ │ │ │ ├── Chart_Plugins │ │ │ │ └── Formatter.md │ │ │ │ ├── Chart_Types │ │ │ │ ├── 3d_Area.md │ │ │ │ ├── 3d_Bar.md │ │ │ │ ├── 3d_Funnel.md │ │ │ │ ├── 3d_Line.md │ │ │ │ ├── 3d_Scatter.md │ │ │ │ ├── 3d_WordCloud.md │ │ │ │ ├── Area.md │ │ │ │ ├── Bar.md │ │ │ │ ├── BoxPlot.md │ │ │ │ ├── CirclePacking.md │ │ │ │ ├── Combination.md │ │ │ │ ├── Correlation.md │ │ │ │ ├── Funnel.md │ │ │ │ ├── Gauge.md │ │ │ │ ├── Heatmap.md │ │ │ │ ├── Histogram.md │ │ │ │ ├── Line.md │ │ │ │ ├── Liquid.md │ │ │ │ ├── Map.md │ │ │ │ ├── Mosaic.md │ │ │ │ ├── Pictogram.md │ │ │ │ ├── Pie.md │ │ │ │ ├── Progress.md │ │ │ │ ├── Radar.md │ │ │ │ ├── RangeArea.md │ │ │ │ ├── RangeColumn.md │ │ │ │ ├── Rose.md │ │ │ │ ├── Sankey.md │ │ │ │ ├── Scatter.md │ │ │ │ ├── Sequence.md │ │ │ │ ├── Sunburst.md │ │ │ │ ├── Treemap.md │ │ │ │ ├── Waterfall.md │ │ │ │ ├── WordCloud.md │ │ │ │ └── chart_types.md │ │ │ │ ├── Contribution_Guide.md │ │ │ │ ├── Cross-terminal_and_Developer_Ecology │ │ │ │ ├── Arco_Design.md │ │ │ │ ├── Semi_Design.md │ │ │ │ ├── harmony.md │ │ │ │ ├── lynx.md │ │ │ │ ├── midscene.md │ │ │ │ ├── mini-app │ │ │ │ │ ├── block.md │ │ │ │ │ ├── how.md │ │ │ │ │ ├── lark.md │ │ │ │ │ ├── tt.md │ │ │ │ │ └── wx.md │ │ │ │ ├── node.md │ │ │ │ ├── omi.md │ │ │ │ ├── openinula.md │ │ │ │ ├── python.md │ │ │ │ ├── react-lynx.md │ │ │ │ ├── react.md │ │ │ │ ├── svg.md │ │ │ │ ├── taro.md │ │ │ │ ├── univer.md │ │ │ │ └── vue.md │ │ │ │ ├── Event.md │ │ │ │ ├── Function.md │ │ │ │ ├── Getting_Started.md │ │ │ │ ├── Intelligent_Visualization │ │ │ │ ├── Getting_Started_with_Data_Video.md │ │ │ │ └── VMind_Getting_Started.md │ │ │ │ ├── Layout │ │ │ │ ├── Layout_Cases │ │ │ │ │ ├── example-custom.md │ │ │ │ │ └── example-grid.md │ │ │ │ └── Layout_Strategy.md │ │ │ │ ├── Load_on_Demand.md │ │ │ │ ├── Progressive_Render.md │ │ │ │ ├── Self-adaption │ │ │ │ └── Media_Query.md │ │ │ │ ├── Theme │ │ │ │ ├── Apply_Theme.md │ │ │ │ ├── Arco_Design.md │ │ │ │ ├── Color_Theme.md │ │ │ │ ├── Customize_Theme.md │ │ │ │ ├── Semi_Design.md │ │ │ │ ├── Theme.md │ │ │ │ ├── Theme_Concept_and_Design_Rules.md │ │ │ │ ├── Theme_Extension.md │ │ │ │ └── Ve_O_Design.md │ │ │ │ ├── VChart_Website_Guide.md │ │ │ │ └── extend │ │ │ │ ├── Richtext_and_Dom.md │ │ │ │ ├── custom_animation.md │ │ │ │ ├── custom_layout.md │ │ │ │ └── custom_mark.md │ │ ├── menu.json │ │ └── zh │ │ │ └── tutorial_docs │ │ │ ├── Animation │ │ │ ├── Animation_Attributes_and_Settings.md │ │ │ ├── Animation_Cases.md │ │ │ ├── Animation_Types.md │ │ │ └── Configuration_and_Choreography_of_Complex_Animations.md │ │ │ ├── Basic │ │ │ ├── A_Basic_Spec.md │ │ │ ├── DeepSeek_With_Cursor.md │ │ │ ├── How_to_Get_VChart.md │ │ │ ├── How_to_Import_VChart.md │ │ │ └── Quickly_Get_Started_with_VisActor_Using_Trae_Context_Doc.md │ │ │ ├── Chart_Concepts │ │ │ ├── Axes.md │ │ │ ├── Brush.md │ │ │ ├── Crosshair.md │ │ │ ├── Data │ │ │ │ ├── Data_Types_and_Interface.md │ │ │ │ └── Dataset_and_Data_Processing.md │ │ │ ├── Datazoom.md │ │ │ ├── Indicator.md │ │ │ ├── Legend.md │ │ │ ├── Player.md │ │ │ ├── Scrollbar.md │ │ │ ├── Series │ │ │ │ ├── Composition_and_Effect_of_Series.md │ │ │ │ ├── Label.md │ │ │ │ └── Mark.md │ │ │ ├── Title.md │ │ │ ├── Tooltip.md │ │ │ ├── Understanding_VChart.md │ │ │ └── marker.md │ │ │ ├── Chart_Extensions │ │ │ ├── about_extensions.md │ │ │ ├── candlestick.md │ │ │ ├── conversion_funnel.md │ │ │ ├── map_label.md │ │ │ ├── regression_line.md │ │ │ └── series_break.md │ │ │ ├── Chart_Plugins │ │ │ └── Formatter.md │ │ │ ├── Chart_Types │ │ │ ├── 3d_Area.md │ │ │ ├── 3d_Bar.md │ │ │ ├── 3d_Funnel.md │ │ │ ├── 3d_Line.md │ │ │ ├── 3d_Scatter.md │ │ │ ├── 3d_WordCloud.md │ │ │ ├── Area.md │ │ │ ├── Bar.md │ │ │ ├── BoxPlot.md │ │ │ ├── Candlestick.md │ │ │ ├── CirclePacking.md │ │ │ ├── Combination.md │ │ │ ├── Correlation.md │ │ │ ├── Funnel.md │ │ │ ├── Gauge.md │ │ │ ├── Heatmap.md │ │ │ ├── Histogram.md │ │ │ ├── Line.md │ │ │ ├── Liquid.md │ │ │ ├── Map.md │ │ │ ├── Mosaic.md │ │ │ ├── Pictogram.md │ │ │ ├── Pie.md │ │ │ ├── Progress.md │ │ │ ├── Radar.md │ │ │ ├── RangeArea.md │ │ │ ├── RangeColumn.md │ │ │ ├── Rose.md │ │ │ ├── Sankey.md │ │ │ ├── Scatter.md │ │ │ ├── Sequence.md │ │ │ ├── Sunburst.md │ │ │ ├── Treemap.md │ │ │ ├── Waterfall.md │ │ │ ├── WordCloud.md │ │ │ └── chart_types.md │ │ │ ├── Contribution_Guide.md │ │ │ ├── Cross-terminal_and_Developer_Ecology │ │ │ ├── Arco_Design.md │ │ │ ├── Semi_Design.md │ │ │ ├── harmony.md │ │ │ ├── lynx.md │ │ │ ├── midscene.md │ │ │ ├── mini-app │ │ │ │ ├── block.md │ │ │ │ ├── how.md │ │ │ │ ├── lark.md │ │ │ │ ├── tt.md │ │ │ │ └── wx.md │ │ │ ├── node.md │ │ │ ├── omi.md │ │ │ ├── openinula.md │ │ │ ├── python.md │ │ │ ├── react-lynx.md │ │ │ ├── react.md │ │ │ ├── svg.md │ │ │ ├── taro.md │ │ │ ├── univer.md │ │ │ └── vue.md │ │ │ ├── Event.md │ │ │ ├── Function.md │ │ │ ├── Getting_Started.md │ │ │ ├── Intelligent_Visualization │ │ │ ├── Getting_Started_with_Data_Video.md │ │ │ └── VMind_Getting_Started.md │ │ │ ├── Layout │ │ │ ├── Layout_Cases │ │ │ │ ├── example-custom.md │ │ │ │ └── example-grid.md │ │ │ └── Layout_Strategy.md │ │ │ ├── Load_on_Demand.md │ │ │ ├── Progressive_Render.md │ │ │ ├── Self-adaption │ │ │ └── Media_Query.md │ │ │ ├── Theme │ │ │ ├── Apply_Theme.md │ │ │ ├── Arco_Design.md │ │ │ ├── Color_Theme.md │ │ │ ├── Customize_Theme.md │ │ │ ├── Semi_Design.md │ │ │ ├── Theme.md │ │ │ ├── Theme_Concept_and_Design_Rules.md │ │ │ ├── Theme_Extension.md │ │ │ └── Ve_O_Design.md │ │ │ ├── VChart_Website_Guide.md │ │ │ └── extend │ │ │ ├── Richtext_and_Dom.md │ │ │ ├── custom_animation.md │ │ │ ├── custom_layout.md │ │ │ └── custom_mark.md │ ├── option │ │ ├── en │ │ │ ├── animate │ │ │ │ ├── animation.md │ │ │ │ ├── mark-animate.md │ │ │ │ ├── stage-options.md │ │ │ │ └── state-animate.md │ │ │ ├── chart │ │ │ │ ├── area.md │ │ │ │ ├── bar.md │ │ │ │ ├── bar3d.md │ │ │ │ ├── box-plot.md │ │ │ │ ├── circle-packing.md │ │ │ │ ├── circular-progress.md │ │ │ │ ├── common.md │ │ │ │ ├── correlation.md │ │ │ │ ├── funnel.md │ │ │ │ ├── funnel3d.md │ │ │ │ ├── gauge.md │ │ │ │ ├── heatmap.md │ │ │ │ ├── histogram.md │ │ │ │ ├── image-cloud.md │ │ │ │ ├── line.md │ │ │ │ ├── linear-progress.md │ │ │ │ ├── liquid.md │ │ │ │ ├── map.md │ │ │ │ ├── mosaic.md │ │ │ │ ├── pictogram.md │ │ │ │ ├── pie.md │ │ │ │ ├── radar.md │ │ │ │ ├── range-area.md │ │ │ │ ├── range-column.md │ │ │ │ ├── rose.md │ │ │ │ ├── sankey.md │ │ │ │ ├── scatter.md │ │ │ │ ├── sequence.md │ │ │ │ ├── sunburst.md │ │ │ │ ├── treemap.md │ │ │ │ ├── venn.md │ │ │ │ ├── waterfall.md │ │ │ │ ├── word-cloud.md │ │ │ │ └── word-cloud3d.md │ │ │ ├── common │ │ │ │ ├── background.md │ │ │ │ ├── cartesian-series.md │ │ │ │ ├── chart-component.md │ │ │ │ ├── chart-spec.md │ │ │ │ ├── custom-mark-base.md │ │ │ │ ├── custom-mark.md │ │ │ │ ├── data.md │ │ │ │ ├── direction.md │ │ │ │ ├── drill.md │ │ │ │ ├── element-active-trigger.md │ │ │ │ ├── event-type.md │ │ │ │ ├── extension-mark.md │ │ │ │ ├── hover.md │ │ │ │ ├── id.md │ │ │ │ ├── interaction.md │ │ │ │ ├── layout-item.md │ │ │ │ ├── layout-number.md │ │ │ │ ├── layout-padding.md │ │ │ │ ├── layout.md │ │ │ │ ├── mark-progressive-config.md │ │ │ │ ├── mark-state-style.md │ │ │ │ ├── mark-style.md │ │ │ │ ├── padding.md │ │ │ │ ├── polar-series.md │ │ │ │ ├── region-and-series-filter.md │ │ │ │ ├── region.md │ │ │ │ ├── scale.md │ │ │ │ ├── select.md │ │ │ │ ├── series-style.md │ │ │ │ ├── series.md │ │ │ │ ├── theme.md │ │ │ │ ├── trigger.md │ │ │ │ ├── visual-scale-spec.md │ │ │ │ ├── visual-scale.md │ │ │ │ └── xy-pos.md │ │ │ ├── component │ │ │ │ ├── axis-common │ │ │ │ │ ├── axis-domain-line.md │ │ │ │ │ ├── axis-grid.md │ │ │ │ │ ├── axis-label.md │ │ │ │ │ ├── axis-title.md │ │ │ │ │ ├── band-axis.md │ │ │ │ │ ├── base-axis.md │ │ │ │ │ ├── cartesian-axis.md │ │ │ │ │ ├── linear-axis.md │ │ │ │ │ ├── log-axis.md │ │ │ │ │ ├── polar-axis.md │ │ │ │ │ ├── style-callback.md │ │ │ │ │ ├── symlog-axis.md │ │ │ │ │ └── time-axis.md │ │ │ │ ├── brush-common │ │ │ │ │ └── brush-selected-item-style.md │ │ │ │ ├── brush.md │ │ │ │ ├── cartesian-axis.md │ │ │ │ ├── crosshair-common │ │ │ │ │ ├── crosshair-data-bind.md │ │ │ │ │ ├── crosshair-label.md │ │ │ │ │ ├── crosshair-line.md │ │ │ │ │ └── crosshair-x-field.md │ │ │ │ ├── crosshair.md │ │ │ │ ├── data-filter-component-common │ │ │ │ │ ├── data-filter-base-component.md │ │ │ │ │ ├── roam-spec.md │ │ │ │ │ └── text-format-callback.md │ │ │ │ ├── data-zoom.md │ │ │ │ ├── indicator │ │ │ │ │ ├── indicator-item.md │ │ │ │ │ └── indicator.md │ │ │ │ ├── label.md │ │ │ │ ├── legend-color.md │ │ │ │ ├── legend-common │ │ │ │ │ ├── base-legend.md │ │ │ │ │ └── continuous-legend.md │ │ │ │ ├── legend-discrete.md │ │ │ │ ├── legend-size.md │ │ │ │ ├── legend.md │ │ │ │ ├── mark-area.md │ │ │ │ ├── mark-line.md │ │ │ │ ├── mark-point.md │ │ │ │ ├── marker-common │ │ │ │ │ ├── base-marker.md │ │ │ │ │ ├── marker-aggregation.md │ │ │ │ │ ├── marker-animation.md │ │ │ │ │ ├── marker-axis.md │ │ │ │ │ ├── marker-data-point-offset.md │ │ │ │ │ ├── marker-data-point.md │ │ │ │ │ ├── marker-label.md │ │ │ │ │ ├── marker-positions.md │ │ │ │ │ ├── marker-ref.md │ │ │ │ │ ├── marker-state.md │ │ │ │ │ ├── marker-style-callback.md │ │ │ │ │ └── marker-symbol.md │ │ │ │ ├── player-common │ │ │ │ │ └── player-controller-common.md │ │ │ │ ├── player.md │ │ │ │ ├── polar-axis.md │ │ │ │ ├── scrollbar.md │ │ │ │ ├── title.md │ │ │ │ ├── tooltip-common │ │ │ │ │ ├── tooltip-line-pattern.md │ │ │ │ │ ├── tooltip-pattern.md │ │ │ │ │ ├── tooltip-position-callback.md │ │ │ │ │ ├── tooltip-position-fixed-mode.md │ │ │ │ │ ├── tooltip-position-fixed-type.md │ │ │ │ │ ├── tooltip-position-fixed.md │ │ │ │ │ ├── tooltip-shape-pattern.md │ │ │ │ │ ├── tooltip-text-theme.md │ │ │ │ │ └── tooltip-theme.md │ │ │ │ ├── tooltip.md │ │ │ │ └── total-label.md │ │ │ ├── graphic │ │ │ │ ├── arc.md │ │ │ │ ├── attribute.md │ │ │ │ ├── border-style.md │ │ │ │ ├── dom-attributes.md │ │ │ │ ├── fill-style.md │ │ │ │ ├── gradient.md │ │ │ │ ├── image.md │ │ │ │ ├── line.md │ │ │ │ ├── partial-stroke-style.md │ │ │ │ ├── path.md │ │ │ │ ├── polygon.md │ │ │ │ ├── rect.md │ │ │ │ ├── rect3d.md │ │ │ │ ├── rich-text │ │ │ │ │ ├── rich-text-character.md │ │ │ │ │ └── rich-text.md │ │ │ │ ├── rule.md │ │ │ │ ├── segment-symbol.md │ │ │ │ ├── stroke-style.md │ │ │ │ ├── symbol.md │ │ │ │ ├── text-font.md │ │ │ │ ├── text-poptip.md │ │ │ │ └── text.md │ │ │ ├── mark │ │ │ │ ├── arc.md │ │ │ │ ├── area.md │ │ │ │ ├── box-plot.md │ │ │ │ ├── common-mark.md │ │ │ │ ├── group.md │ │ │ │ ├── line.md │ │ │ │ ├── link-path.md │ │ │ │ ├── liquid.md │ │ │ │ ├── path.md │ │ │ │ ├── point.md │ │ │ │ ├── polygon.md │ │ │ │ ├── rect.md │ │ │ │ ├── rect3d.md │ │ │ │ ├── ripple.md │ │ │ │ ├── symbol.md │ │ │ │ └── text.md │ │ │ ├── option.md │ │ │ ├── region │ │ │ │ └── region.md │ │ │ └── series │ │ │ │ ├── area.md │ │ │ │ ├── bar-style.md │ │ │ │ ├── bar.md │ │ │ │ ├── bar3d.md │ │ │ │ ├── box-plot.md │ │ │ │ ├── circle-packing.md │ │ │ │ ├── circular-progress.md │ │ │ │ ├── correlation.md │ │ │ │ ├── dot.md │ │ │ │ ├── funnel.md │ │ │ │ ├── funnel3d.md │ │ │ │ ├── gauge-pointer.md │ │ │ │ ├── gauge.md │ │ │ │ ├── heatmap.md │ │ │ │ ├── image-cloud.md │ │ │ │ ├── line.md │ │ │ │ ├── linear-progress.md │ │ │ │ ├── link.md │ │ │ │ ├── liquid.md │ │ │ │ ├── map.md │ │ │ │ ├── mosaic.md │ │ │ │ ├── pictogram.md │ │ │ │ ├── pie.md │ │ │ │ ├── progress-like.md │ │ │ │ ├── radar.md │ │ │ │ ├── range-area.md │ │ │ │ ├── range-column.md │ │ │ │ ├── rose.md │ │ │ │ ├── sankey.md │ │ │ │ ├── scatter.md │ │ │ │ ├── sunburst.md │ │ │ │ ├── treemap.md │ │ │ │ ├── venn.md │ │ │ │ ├── waterfall.md │ │ │ │ ├── word-cloud.md │ │ │ │ └── word-cloud3d.md │ │ └── zh │ │ │ ├── animate │ │ │ ├── animation.md │ │ │ ├── mark-animate.md │ │ │ ├── stage-options.md │ │ │ └── state-animate.md │ │ │ ├── chart │ │ │ ├── area.md │ │ │ ├── bar.md │ │ │ ├── bar3d.md │ │ │ ├── box-plot.md │ │ │ ├── circle-packing.md │ │ │ ├── circular-progress.md │ │ │ ├── common.md │ │ │ ├── correlation.md │ │ │ ├── funnel.md │ │ │ ├── funnel3d.md │ │ │ ├── gauge.md │ │ │ ├── heatmap.md │ │ │ ├── histogram.md │ │ │ ├── image-cloud.md │ │ │ ├── line.md │ │ │ ├── linear-progress.md │ │ │ ├── liquid.md │ │ │ ├── map.md │ │ │ ├── mosaic.md │ │ │ ├── pictogram.md │ │ │ ├── pie.md │ │ │ ├── radar.md │ │ │ ├── range-area.md │ │ │ ├── range-column.md │ │ │ ├── rose.md │ │ │ ├── sankey.md │ │ │ ├── scatter.md │ │ │ ├── sequence.md │ │ │ ├── sunburst.md │ │ │ ├── treemap.md │ │ │ ├── venn.md │ │ │ ├── waterfall.md │ │ │ ├── word-cloud.md │ │ │ └── word-cloud3d.md │ │ │ ├── common │ │ │ ├── background.md │ │ │ ├── cartesian-series.md │ │ │ ├── chart-component.md │ │ │ ├── chart-spec.md │ │ │ ├── custom-mark-base.md │ │ │ ├── custom-mark.md │ │ │ ├── data.md │ │ │ ├── direction.md │ │ │ ├── drill.md │ │ │ ├── element-active-trigger.md │ │ │ ├── event-type.md │ │ │ ├── extension-mark.md │ │ │ ├── hover.md │ │ │ ├── id.md │ │ │ ├── interaction.md │ │ │ ├── layout-item.md │ │ │ ├── layout-number.md │ │ │ ├── layout-padding.md │ │ │ ├── layout.md │ │ │ ├── mark-progressive-config.md │ │ │ ├── mark-state-style.md │ │ │ ├── mark-style.md │ │ │ ├── padding.md │ │ │ ├── polar-series.md │ │ │ ├── region-and-series-filter.md │ │ │ ├── region.md │ │ │ ├── scale.md │ │ │ ├── select.md │ │ │ ├── series-style.md │ │ │ ├── series.md │ │ │ ├── theme.md │ │ │ ├── trigger.md │ │ │ ├── visual-scale-spec.md │ │ │ ├── visual-scale.md │ │ │ └── xy-pos.md │ │ │ ├── component │ │ │ ├── axis-common │ │ │ │ ├── axis-domain-line.md │ │ │ │ ├── axis-grid.md │ │ │ │ ├── axis-label.md │ │ │ │ ├── axis-title.md │ │ │ │ ├── band-axis.md │ │ │ │ ├── base-axis.md │ │ │ │ ├── cartesian-axis.md │ │ │ │ ├── linear-axis.md │ │ │ │ ├── log-axis.md │ │ │ │ ├── polar-axis.md │ │ │ │ ├── style-callback.md │ │ │ │ ├── symlog-axis.md │ │ │ │ └── time-axis.md │ │ │ ├── brush-common │ │ │ │ └── brush-selected-item-style.md │ │ │ ├── brush.md │ │ │ ├── cartesian-axis.md │ │ │ ├── crosshair-common │ │ │ │ ├── crosshair-data-bind.md │ │ │ │ ├── crosshair-label.md │ │ │ │ ├── crosshair-line.md │ │ │ │ └── crosshair-x-field.md │ │ │ ├── crosshair.md │ │ │ ├── data-filter-component-common │ │ │ │ ├── data-filter-base-component.md │ │ │ │ ├── roam-spec.md │ │ │ │ └── text-format-callback.md │ │ │ ├── data-zoom.md │ │ │ ├── indicator │ │ │ │ ├── indicator-item.md │ │ │ │ └── indicator.md │ │ │ ├── label.md │ │ │ ├── legend-color.md │ │ │ ├── legend-common │ │ │ │ ├── base-legend.md │ │ │ │ └── continuous-legend.md │ │ │ ├── legend-discrete.md │ │ │ ├── legend-size.md │ │ │ ├── legend.md │ │ │ ├── mark-area.md │ │ │ ├── mark-line.md │ │ │ ├── mark-point.md │ │ │ ├── marker-common │ │ │ │ ├── base-marker.md │ │ │ │ ├── marker-aggregation.md │ │ │ │ ├── marker-animation.md │ │ │ │ ├── marker-axis.md │ │ │ │ ├── marker-data-point-offset.md │ │ │ │ ├── marker-data-point.md │ │ │ │ ├── marker-label.md │ │ │ │ ├── marker-positions.md │ │ │ │ ├── marker-ref.md │ │ │ │ ├── marker-state.md │ │ │ │ ├── marker-style-callback.md │ │ │ │ └── marker-symbol.md │ │ │ ├── player-common │ │ │ │ └── player-controller-common.md │ │ │ ├── player.md │ │ │ ├── polar-axis.md │ │ │ ├── scrollbar.md │ │ │ ├── title.md │ │ │ ├── tooltip-common │ │ │ │ ├── tooltip-line-pattern.md │ │ │ │ ├── tooltip-pattern.md │ │ │ │ ├── tooltip-position-callback.md │ │ │ │ ├── tooltip-position-fixed-mode.md │ │ │ │ ├── tooltip-position-fixed-type.md │ │ │ │ ├── tooltip-position-fixed.md │ │ │ │ ├── tooltip-shape-pattern.md │ │ │ │ ├── tooltip-text-theme.md │ │ │ │ └── tooltip-theme.md │ │ │ ├── tooltip.md │ │ │ └── total-label.md │ │ │ ├── graphic │ │ │ ├── arc.md │ │ │ ├── attribute.md │ │ │ ├── border-style.md │ │ │ ├── dom-attributes.md │ │ │ ├── fill-style.md │ │ │ ├── gradient.md │ │ │ ├── image.md │ │ │ ├── line.md │ │ │ ├── partial-stroke-style.md │ │ │ ├── path.md │ │ │ ├── polygon.md │ │ │ ├── rect.md │ │ │ ├── rect3d.md │ │ │ ├── rich-text │ │ │ │ ├── rich-text-character.md │ │ │ │ └── rich-text.md │ │ │ ├── rule.md │ │ │ ├── segment-symbol.md │ │ │ ├── stroke-style.md │ │ │ ├── symbol.md │ │ │ ├── text-font.md │ │ │ ├── text-poptip.md │ │ │ └── text.md │ │ │ ├── mark │ │ │ ├── arc.md │ │ │ ├── area.md │ │ │ ├── box-plot.md │ │ │ ├── common-mark.md │ │ │ ├── group.md │ │ │ ├── line.md │ │ │ ├── link-path.md │ │ │ ├── liquid.md │ │ │ ├── path.md │ │ │ ├── point.md │ │ │ ├── polygon.md │ │ │ ├── rect.md │ │ │ ├── rect3d.md │ │ │ ├── ripple.md │ │ │ ├── symbol.md │ │ │ └── text.md │ │ │ ├── option.md │ │ │ ├── region │ │ │ └── region.md │ │ │ └── series │ │ │ ├── area.md │ │ │ ├── bar-style.md │ │ │ ├── bar.md │ │ │ ├── bar3d.md │ │ │ ├── box-plot.md │ │ │ ├── circle-packing.md │ │ │ ├── circular-progress.md │ │ │ ├── correlation.md │ │ │ ├── dot.md │ │ │ ├── funnel.md │ │ │ ├── funnel3d.md │ │ │ ├── gauge-pointer.md │ │ │ ├── gauge.md │ │ │ ├── heatmap.md │ │ │ ├── image-cloud.md │ │ │ ├── line.md │ │ │ ├── linear-progress.md │ │ │ ├── link.md │ │ │ ├── liquid.md │ │ │ ├── map.md │ │ │ ├── mosaic.md │ │ │ ├── pictogram.md │ │ │ ├── pie.md │ │ │ ├── progress-like.md │ │ │ ├── radar.md │ │ │ ├── range-area.md │ │ │ ├── range-column.md │ │ │ ├── rose.md │ │ │ ├── sankey.md │ │ │ ├── scatter.md │ │ │ ├── sunburst.md │ │ │ ├── treemap.md │ │ │ ├── venn.md │ │ │ ├── waterfall.md │ │ │ ├── word-cloud.md │ │ │ └── word-cloud3d.md │ └── themes │ │ ├── colors.json │ │ ├── dark-mobile.json │ │ ├── dark.json │ │ ├── light-mobile.json │ │ ├── light.json │ │ ├── semiDesignDark.json │ │ ├── semiDesignLight.json │ │ ├── vScreenBlueOrange.json │ │ ├── vScreenClean.json │ │ ├── vScreenECommercePurple.json │ │ ├── vScreenElectricGreen.json │ │ ├── vScreenFinanceYellow.json │ │ ├── vScreenOutskirts.json │ │ ├── vScreenPartyRed.json │ │ ├── vScreenRedBlue.json │ │ ├── vScreenVolcanoBlue.json │ │ └── vScreenWenLvCyan.json ├── index.html ├── libs │ ├── preview.js │ └── template-parse │ │ ├── build.js │ │ ├── etpl.js │ │ ├── md2json.js │ │ └── schemaHelper.js ├── menu.json ├── package.json ├── public │ └── vchart │ │ ├── faq │ │ ├── 10-0.png │ │ ├── 100-0.png │ │ ├── 100-1.png │ │ ├── 11-0.png │ │ ├── 11-1.png │ │ ├── 12-0.png │ │ ├── 13-0.png │ │ ├── 14-0.png │ │ ├── 14-1.png │ │ ├── 16-0.gif │ │ ├── 18-0.png │ │ ├── 19-0.png │ │ ├── 20-0.png │ │ ├── 21-0.png │ │ ├── 21-1.png │ │ ├── 23-0.png │ │ ├── 23-1.png │ │ ├── 23-2.png │ │ ├── 23-3.png │ │ ├── 23-4.png │ │ ├── 24-0.png │ │ ├── 24-1.png │ │ ├── 24-2.png │ │ ├── 25-0.png │ │ ├── 25-1.png │ │ ├── 26-0.png │ │ ├── 26-1.png │ │ ├── 26-2.png │ │ ├── 26-3.png │ │ ├── 27-0.png │ │ ├── 27-1.png │ │ ├── 27-2.png │ │ ├── 28-0.png │ │ ├── 28-1.png │ │ ├── 29-0.png │ │ ├── 29-1.gif │ │ ├── 30-0.png │ │ ├── 30-1.gif │ │ ├── 31-0.png │ │ ├── 31-1.png │ │ ├── 31-2.png │ │ ├── 32-0.png │ │ ├── 32-1.png │ │ ├── 40-0.png │ │ ├── 40-1.png │ │ ├── 41-0.PNG │ │ ├── 41-1.png │ │ ├── 42-0.png │ │ ├── 42-1.png │ │ ├── 43-0.png │ │ ├── 43-1.png │ │ ├── 44-0.png │ │ ├── 44-1.png │ │ ├── 45-0.png │ │ ├── 45-1.png │ │ ├── 47-0.png │ │ ├── 47-1.png │ │ ├── 64-0.png │ │ ├── 64-1.png │ │ ├── 64-2.gif │ │ ├── 65-0.png │ │ ├── 66-0.png │ │ ├── 67-0.png │ │ ├── 67-1.png │ │ ├── 67-2.png │ │ ├── 67-3.png │ │ ├── 68-0.png │ │ ├── 68-1.png │ │ ├── 69-0.png │ │ ├── 69-1.png │ │ ├── 7-0.png │ │ ├── 70-0.png │ │ ├── 70-1.png │ │ ├── 71-0.png │ │ ├── 72-0.png │ │ ├── 72-1.png │ │ ├── 73-0.png │ │ ├── 73-1.png │ │ ├── 75-0.png │ │ ├── 76-0.png │ │ ├── 78-0.png │ │ ├── 79-0.png │ │ ├── 79-1.png │ │ ├── 79-2.png │ │ ├── 8-0.png │ │ ├── 80-0.png │ │ ├── 81-0.png │ │ ├── 83-0.gif │ │ ├── 84-0.png │ │ ├── 85-0.png │ │ ├── 85-1.png │ │ ├── 85-2.png │ │ ├── 85-3.png │ │ ├── 87-0.png │ │ ├── 87-1.png │ │ ├── 87-2.png │ │ ├── 88-0.png │ │ ├── 88-1.png │ │ ├── 89-0.png │ │ ├── 89-1.png │ │ ├── 89-2.png │ │ ├── 9-0.png │ │ ├── 90-1.png │ │ ├── 91-0.png │ │ ├── 91-1.png │ │ ├── 92-0.png │ │ ├── 93-0.png │ │ ├── 94-0.png │ │ ├── 94-1.gif │ │ ├── 95-0.png │ │ ├── 95-1.png │ │ ├── 96-0.png │ │ ├── 96-1.png │ │ ├── 96-2.png │ │ ├── 97-0.png │ │ ├── 97-1.png │ │ ├── 98-0.png │ │ ├── 98-1.png │ │ ├── 98-2.png │ │ └── 99-0.png │ │ ├── guide │ │ ├── extension │ │ │ ├── conversion-funnel.png │ │ │ ├── map-label.png │ │ │ └── series-break.png │ │ ├── media-query │ │ │ └── 0.png │ │ ├── omi-vchart.png │ │ └── theme │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── arco.png │ │ │ ├── bar-chart-dark.png │ │ │ ├── bar-chart-light.png │ │ │ ├── color-legend-dark.png │ │ │ ├── color-legend-light.png │ │ │ ├── column-chart-dark.png │ │ │ ├── column-chart-light.png │ │ │ ├── gauge-chart-dark.png │ │ │ ├── gauge-chart-light.png │ │ │ ├── heatmap-chart-dark.png │ │ │ ├── heatmap-chart-light.png │ │ │ ├── layout-0.png │ │ │ ├── layout-1.png │ │ │ ├── layout-2.png │ │ │ ├── layout-3.png │ │ │ ├── line-chart-dark.png │ │ │ ├── line-chart-light.png │ │ │ ├── mark-area-dark.png │ │ │ ├── mark-area-light.png │ │ │ ├── mark-line-dark.png │ │ │ ├── mark-line-light.png │ │ │ ├── mark-point-dark.png │ │ │ ├── mark-point-light.png │ │ │ ├── pie-chart-dark.png │ │ │ ├── pie-chart-light.png │ │ │ ├── player-dark.png │ │ │ ├── player-light.png │ │ │ ├── point-dark.png │ │ │ ├── point-light.png │ │ │ ├── scatter-chart-dark.png │ │ │ ├── scatter-chart-light.png │ │ │ ├── scroll-bar-dark.png │ │ │ ├── scroll-bar-light.png │ │ │ ├── semi.gif │ │ │ ├── size-legend-dark.png │ │ │ ├── size-legend-light.png │ │ │ ├── text-color.png │ │ │ ├── tooltip-dark.png │ │ │ ├── tooltip-light.png │ │ │ ├── veo-1.png │ │ │ ├── veo-2.png │ │ │ ├── veo-3.gif │ │ │ ├── veo-4.png │ │ │ └── veo-5.png │ │ └── preview │ │ ├── appear-animation-config_1.8.3.gif │ │ ├── area-growth.gif │ │ ├── area-load.gif │ │ ├── area-mark-tooltip_1.9.0.png │ │ ├── area-streamlight_1.8.3.gif │ │ ├── axis-band-size_1.4.0.png │ │ ├── axis-break_1.12.2.png │ │ ├── axis-inner-offset_1.12.9.png │ │ ├── axis-label-autoWrap_1.12.5.png │ │ ├── axis-richtext-label-1.10.0.png │ │ ├── axis-style_1.13.1.png │ │ ├── axis-vertical-label_1.4.0.png │ │ ├── bar-autoBandSize-1.11.2.png │ │ ├── bar-background_1.6.0.png │ │ ├── bar-break-by-axis_1.12.14.png │ │ ├── bar-customized-label-en_1.11.1.png │ │ ├── bar-customized-label_1.11.1.png │ │ ├── bar-functional-position_1.6.0.png │ │ ├── bar-group-tooltip_1.11.0.png │ │ ├── bar-highlight.gif │ │ ├── bar-highlight_1.8.3.gif │ │ ├── bar-markPoint_1.5.0.png │ │ ├── bar-oneByOne-group_1.8.3.gif │ │ ├── bar-oneByOne-rect_1.8.3.gif │ │ ├── bar-oneByOne-series_1.8.3.gif │ │ ├── bar-streamlight.gif │ │ ├── basic-map_1.9.1.png │ │ ├── basic-mark-point-1.11.1.png │ │ ├── bilateral-growth.gif │ │ ├── brush-datazoom_1.10.0.gif │ │ ├── bubble-circle-packing.png │ │ ├── business-funnel-with-bar_1.11.10.png │ │ ├── cartesian-mark-area-pos-1.11.0.png │ │ ├── cartesian-mark-line-pos-1.11.0.png │ │ ├── circular-progress-tick_1.4.2.png │ │ ├── circular-progress-with-text_1.6.0.png │ │ ├── column-parallel-highlight.gif │ │ ├── column-parallel-streamlight.gif │ │ ├── combination-bar-line_1.10.3.png │ │ ├── comparative-funnel-template-1.10.1.png │ │ ├── conversion-funnel_1.12.14.png │ │ ├── correlation-chart_1.5.1.png │ │ ├── correlation_tutorial_1.5.1.png │ │ ├── custom-line-legend_1.8.6.png │ │ ├── custom-pie-extension.png │ │ ├── custom-rect-html_1.11.0.png │ │ ├── custom-state-sort_1.9.0.gif │ │ ├── custom-tooltip.png │ │ ├── data-zoom-big-data_1.10.0.gif │ │ ├── data-zoom-lock_1.5.0.png │ │ ├── data-zoom-span_1.5.0.png │ │ ├── double-axis-load.gif │ │ ├── enterable-tooltip_1.7.0.png │ │ ├── events-sync-charts_1.11.0.png │ │ ├── extension-chart-sequence-scatter-kde.gif │ │ ├── extension-chart-sequence-scatter-link-classification.gif │ │ ├── extension-chart-sequence-scatter-link-neighborhood.gif │ │ ├── funnel-extensionMark_1.7.0.png │ │ ├── funnel-react-attributes-1.11.0.png │ │ ├── funnel-template-1.10.0.png │ │ ├── funnel-template-en-1.10.0.png │ │ ├── gauge-progress-tick_1.4.0.png │ │ ├── gauge-progress-tick_1.4.2.png │ │ ├── gauge-segment-custom-tick_1.4.2.png │ │ ├── gauge-segment-tick_1.4.0.png │ │ ├── gauge-segment-tick_1.4.2.png │ │ ├── gauge-segment_1.4.0.png │ │ ├── gauge-segment_1.4.2.png │ │ ├── gauge-track_1.7.2.png │ │ ├── geo-mark-point-1.11.0.png │ │ ├── interaction-area-chart-element-highlight_1.9.0.gif │ │ ├── interaction-combination-chart-highlight-by-key_1.9.0.gif │ │ ├── interaction-element-active_1.9.0.gif │ │ ├── interaction-highlight-by-legend_1.9.0.gif │ │ ├── interaction-line-chart-element-highlight-by-group_1.9.0.gif │ │ ├── interaction-pie-chart-active-by-legend_1.9.0.gif │ │ ├── interaction-pie-chart-multiple-select_1.9.0.gif │ │ ├── interaction-rose-chart-highlight-by-name_1.9.0.gif │ │ ├── label-formatter-1.10.0.png │ │ ├── label-richtext-1.10.0.png │ │ ├── label-syncState_1.9.0.gif │ │ ├── label-tooltip-1.13.5.png │ │ ├── layout-align-self_1.9.0.png │ │ ├── legend-discrete-legend-scale_1.10.4.png │ │ ├── legend-scrollbar_1.10.3.png │ │ ├── line-chart-line-default-select_1.8.2.png │ │ ├── line-custom-state_1.7.2.png │ │ ├── line-custom-state_1.8.6.png │ │ ├── line-growth.gif │ │ ├── line-load.gif │ │ ├── line-overlap_1.6.0.png │ │ ├── line-sampling_1.6.0.png │ │ ├── linear-progress-with-multi-labels_1.5.0.png │ │ ├── linear-progress-with-target-value_1.5.3.png │ │ ├── liquid-chart-background_1.9.0.png │ │ ├── liquid-chart-reverse_1.11.10.png │ │ ├── liquid-chart-shape_1.9.0.png │ │ ├── liquid-chart-smart-invert_1.9.0.png │ │ ├── liquid-chart-target_1.11.10.png │ │ ├── liquid-chart-tutorial_1.9.0.png │ │ ├── liquid-chart_1.9.0.png │ │ ├── map-with-flying-lines_1.11.1.png │ │ ├── mark-area-quadrant_1.7.0.png │ │ ├── mark-area-range.png │ │ ├── mark-area-with-label.png │ │ ├── mark-line-CAGR_1.7.0.png │ │ ├── mark-line-color-with-series_1.13.0.png │ │ ├── mark-line-custom-label-back_1.11.10.png │ │ ├── mark-line-hierarchy-diff_1.7.0.png │ │ ├── mark-line-multi.png │ │ ├── mark-line-total-diff_1.7.0.png │ │ ├── mark-point-image.png │ │ ├── mosaic-chart-basic-mosaic_1.11.6.png │ │ ├── mosaic-chart-group-mosaic_1.11.6.png │ │ ├── mosaic-chart-simple-mosaic_1.11.6.png │ │ ├── multiple-layers-of-axis-1_1.9.0.png │ │ ├── multiple-layers-of-axis_1.9.0.png │ │ ├── pictogram-cat_1.13.0.png │ │ ├── pictogram-cow_1.13.0.png │ │ ├── pictogram-keyboard_1.13.0.png │ │ ├── pictogram-route_1.13.0.png │ │ ├── pictogram-seat-map_1.13.0.png │ │ ├── pie-chart-customized-legend-pie_1.6.3.png │ │ ├── pie-extension-icon.png │ │ ├── pie-indicator-fitstrategy_1.9.0.png │ │ ├── pie-preset-animation_1.8.3.gif │ │ ├── pie-relocate.gif │ │ ├── pie-richtext-autoEllipsis_1.12.1.png │ │ ├── pie-richtext-autowrap_1.12.1.png │ │ ├── pie-scale.gif │ │ ├── polar-mark-area-pos-1.11.0.png │ │ ├── polar-mark-line-1.11.0.png │ │ ├── polar-mark-line-pos-1.11.0.png │ │ ├── polar-mark-point-1.11.0.png │ │ ├── radar-ridial.gif │ │ ├── react-attributes_legend-icon_1.11.6.png │ │ ├── ring-carousel-animation_1.8.3.gif │ │ ├── roam-drag-zoom_1.5.0.png │ │ ├── roam-scroll_1.5.0.png │ │ ├── sankey-chart-customized-node-1.11.0.png │ │ ├── sankey-chart-specified-node-1.11.0.png │ │ ├── sankey-scrollbar_1.13.0.jpeg │ │ ├── scatter-chart-scatter-shape_1.9.0.png │ │ ├── scatter-map_1.9.1.png │ │ ├── scatter-ripple.gif │ │ ├── simple-animation-arrangement_1.8.3.gif │ │ ├── smooth-label-line_1.4.0.png │ │ ├── stack-percentage-bar_1.10.0.png │ │ ├── stacked-line_1.7.0.png │ │ ├── swimming.png │ │ ├── tgi-bar_1.10.5.png │ │ ├── time-axis-tooltip_1.9.0.png │ │ ├── trend-line-1.12.0.png │ │ ├── venn-chart-hollow_1.11.0.png │ │ ├── venn-chart_1.11.0.png │ │ ├── vscreen-funnel.png │ │ ├── vscreen-gauge.png │ │ ├── vscreen-liquid.gif │ │ ├── vscreen-sankey.png │ │ ├── waterfall-collect-waterfall_1.9.0.png │ │ ├── waterfall-stack-waterfall_1.9.0.png │ │ ├── word-cloud-chart-word-cloud-shape-geometry_1.12.0.png │ │ ├── word-cloud-chart-word-cloud-shape-text_1.12.0.png │ │ ├── word-cloud-scale.gif │ │ └── wordcloud3d_1.13.3.gif ├── src │ ├── app.tsx │ ├── demo.tsx │ ├── header.tsx │ ├── i18n.tsx │ ├── main.tsx │ ├── markdown.tsx │ ├── option.tsx │ ├── option │ │ ├── description.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ └── outline.tsx │ └── vmind.tsx ├── style.css ├── tsconfig.json ├── tsconfig.node.json └── vite.config.js ├── option ├── package.json ├── packages ├── block-vchart │ ├── README.md │ ├── block │ │ ├── creator │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.ttml │ │ │ └── index.ttss │ │ ├── data │ │ │ ├── area.js │ │ │ ├── bar.js │ │ │ ├── column.js │ │ │ ├── funnel.js │ │ │ ├── group-column.js │ │ │ ├── line.js │ │ │ ├── pie-indicator.js │ │ │ ├── pie-inner-label.js │ │ │ ├── pie.js │ │ │ ├── rose.js │ │ │ ├── scatter.js │ │ │ ├── stack-area.js │ │ │ ├── stack-bar.js │ │ │ ├── stack-column.js │ │ │ └── wordcloud.js │ │ ├── index.js │ │ ├── index.json │ │ ├── index.ttml │ │ ├── index.ttss │ │ ├── utils │ │ │ └── utils.js │ │ └── vchart │ │ │ └── index.js │ ├── project.config.json │ └── tsconfig.json ├── harmony_vchart │ ├── .gitignore │ ├── AppScope │ │ ├── app.json5 │ │ └── resources │ │ │ └── base │ │ │ ├── element │ │ │ └── string.json │ │ │ └── media │ │ │ └── app_icon.png │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build-profile.json5 │ ├── code-linter.json5 │ ├── entry │ │ ├── .gitignore │ │ ├── build-profile.json5 │ │ ├── hvigorfile.ts │ │ ├── obfuscation-rules.txt │ │ ├── oh-package-lock.json5 │ │ ├── oh-package.json5 │ │ └── src │ │ │ ├── main │ │ │ ├── ets │ │ │ │ ├── entryability │ │ │ │ │ └── EntryAbility.ets │ │ │ │ ├── entrybackupability │ │ │ │ │ └── EntryBackupAbility.ets │ │ │ │ └── pages │ │ │ │ │ ├── Chart.ets │ │ │ │ │ ├── Home.ets │ │ │ │ │ ├── Index.ets │ │ │ │ │ ├── OhChart.ets │ │ │ │ │ ├── canvas.ets │ │ │ │ │ └── data │ │ │ │ │ ├── area.js │ │ │ │ │ ├── bar.js │ │ │ │ │ ├── boxplot.js │ │ │ │ │ ├── crosshair.js │ │ │ │ │ ├── dual-axis.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── horizontal-bar.js │ │ │ │ │ ├── line.js │ │ │ │ │ ├── pie.js │ │ │ │ │ ├── radar.js │ │ │ │ │ ├── ring.js │ │ │ │ │ ├── rose.js │ │ │ │ │ ├── sankey.js │ │ │ │ │ ├── scatter.js │ │ │ │ │ └── wordcloud.js │ │ │ ├── module.json5 │ │ │ └── resources │ │ │ │ ├── base │ │ │ │ ├── element │ │ │ │ │ ├── color.json │ │ │ │ │ └── string.json │ │ │ │ ├── media │ │ │ │ │ ├── area.png │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── bar.png │ │ │ │ │ ├── boxplot.png │ │ │ │ │ ├── contour.png │ │ │ │ │ ├── custome_tooltip.png │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── dual_axis.png │ │ │ │ │ ├── foreground.png │ │ │ │ │ ├── funnel.png │ │ │ │ │ ├── horizontal_bar.png │ │ │ │ │ ├── indicator.png │ │ │ │ │ ├── layered_image.json │ │ │ │ │ ├── line.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── pie.png │ │ │ │ │ ├── pivot_combination.png │ │ │ │ │ ├── radar.png │ │ │ │ │ ├── ring.png │ │ │ │ │ ├── rose.png │ │ │ │ │ ├── sankey.png │ │ │ │ │ ├── scatter.png │ │ │ │ │ ├── startIcon.png │ │ │ │ │ └── wordcloud.png │ │ │ │ └── profile │ │ │ │ │ ├── backup_config.json │ │ │ │ │ └── main_pages.json │ │ │ │ ├── en_US │ │ │ │ └── element │ │ │ │ │ └── string.json │ │ │ │ └── zh_CN │ │ │ │ └── element │ │ │ │ └── string.json │ │ │ ├── ohosTest │ │ │ ├── ets │ │ │ │ └── test │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ └── List.test.ets │ │ │ └── module.json5 │ │ │ └── test │ │ │ ├── List.test.ets │ │ │ └── LocalUnit.test.ets │ ├── hvigor │ │ └── hvigor-config.json5 │ ├── hvigorfile.ts │ ├── library │ │ ├── .gitignore │ │ ├── BuildProfile.ets │ │ ├── CHANGELOG.md │ │ ├── Index.ets │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build-profile.json5 │ │ ├── consumer-rules.txt │ │ ├── hvigorfile.ts │ │ ├── obfuscation-rules.txt │ │ ├── oh-package.json5 │ │ └── src │ │ │ ├── main │ │ │ ├── ets │ │ │ │ ├── ChartComponent.ets │ │ │ │ ├── event.ets │ │ │ │ ├── index-harmony-simple.es.min.js │ │ │ │ ├── index-harmony.es.min.js │ │ │ │ ├── interface.ts │ │ │ │ ├── simple │ │ │ │ │ ├── ChartComponent.ets │ │ │ │ │ └── ticker.ets │ │ │ │ └── ticker.ets │ │ │ ├── module.json5 │ │ │ └── resources │ │ │ │ └── base │ │ │ │ └── element │ │ │ │ └── string.json │ │ │ ├── ohosTest │ │ │ ├── ets │ │ │ │ └── test │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ └── List.test.ets │ │ │ └── module.json5 │ │ │ └── test │ │ │ ├── List.test.ets │ │ │ └── LocalUnit.test.ets │ ├── oh-package-lock.json5 │ └── oh-package.json5 ├── lark-vchart │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── app.js │ ├── app.json │ ├── gallery │ │ ├── data │ │ │ ├── area.js │ │ │ ├── bar.js │ │ │ ├── boxplot.js │ │ │ ├── dual-axis.js │ │ │ ├── funnel.js │ │ │ ├── horizontal-bar.js │ │ │ ├── line.js │ │ │ ├── pie.js │ │ │ ├── radar.js │ │ │ ├── ring.js │ │ │ ├── rose.js │ │ │ ├── sankey.js │ │ │ ├── scatter.js │ │ │ └── wordcloud.js │ │ ├── img │ │ │ ├── area.png │ │ │ ├── bar.png │ │ │ ├── boxplot.png │ │ │ ├── contour.png │ │ │ ├── custome-tooltip.png │ │ │ ├── dashboard.png │ │ │ ├── dual-axis.png │ │ │ ├── funnel.png │ │ │ ├── horizontal-bar.png │ │ │ ├── indicator.png │ │ │ ├── line.png │ │ │ ├── map.png │ │ │ ├── pie.png │ │ │ ├── pivot-combination.png │ │ │ ├── radar.png │ │ │ ├── ring.png │ │ │ ├── rose.png │ │ │ ├── sankey.png │ │ │ ├── scatter.png │ │ │ └── wordcloud.png │ │ └── pages │ │ │ ├── chart │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.ttml │ │ │ └── index.ttss │ │ │ └── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.ttml │ │ │ └── index.ttss │ ├── package.json │ ├── project.config.json │ ├── rollup.config.ts │ └── src │ │ ├── index.js │ │ ├── index.json │ │ ├── index.ttml │ │ ├── index.ttss │ │ └── vchart │ │ └── index.js ├── openinula-vchart │ ├── .eslintrc.cjs │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── bundler.config.js │ ├── demo │ │ ├── index.html │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── util.ts │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── docs │ │ ├── 1. 快速开始.md │ │ ├── 2.1 API设计.md │ │ ├── 2.2 统一图表标签.md │ │ ├── 2.3 语法化标签.md │ │ ├── 3. 事件交互.md │ │ ├── 4. 主题样式.md │ │ ├── 5. FAQ.md │ │ ├── 6. 更新日志.md │ │ └── README.md │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── VChart.tsx │ │ ├── VChartSimple.tsx │ │ ├── charts │ │ │ ├── AreaChart.tsx │ │ │ ├── BarChart.tsx │ │ │ ├── BaseChart.tsx │ │ │ ├── BoxPlotChart.tsx │ │ │ ├── CircularProgressChart.tsx │ │ │ ├── CommonChart.tsx │ │ │ ├── FunnelChart.tsx │ │ │ ├── HistogramChart.tsx │ │ │ ├── LineChart.tsx │ │ │ ├── LinearProgressChart.tsx │ │ │ ├── MapChart.tsx │ │ │ ├── PieChart.tsx │ │ │ ├── RadarChart.tsx │ │ │ ├── RangeColumnChart.tsx │ │ │ ├── RoseChart.tsx │ │ │ ├── ScatterChart.tsx │ │ │ ├── SequenceChart.tsx │ │ │ ├── WordCloudChart.tsx │ │ │ └── index.ts │ │ ├── components │ │ │ ├── Axis.tsx │ │ │ ├── BaseComponent.tsx │ │ │ ├── Brush.tsx │ │ │ ├── Crosshair.tsx │ │ │ ├── DataZoom.tsx │ │ │ ├── Indicator.tsx │ │ │ ├── Legend.tsx │ │ │ ├── Mark.tsx │ │ │ ├── MarkArea.tsx │ │ │ ├── MarkLine.tsx │ │ │ ├── MarkPoint.tsx │ │ │ ├── Player.tsx │ │ │ ├── Region.tsx │ │ │ ├── ScrollBar.tsx │ │ │ ├── Title.tsx │ │ │ ├── index.ts │ │ │ └── tooltip │ │ │ │ ├── Tooltip.tsx │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.tsx │ │ ├── constants.ts │ │ ├── containers │ │ │ └── withContainer.tsx │ │ ├── context │ │ │ ├── chart.tsx │ │ │ └── stage.tsx │ │ ├── eventsUtils.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── series │ │ │ ├── Area.tsx │ │ │ ├── Bar.tsx │ │ │ ├── BaseSeries.tsx │ │ │ ├── BoxPlot.tsx │ │ │ ├── CircularProgress.tsx │ │ │ ├── Dot.tsx │ │ │ ├── Funnel.tsx │ │ │ ├── Line.tsx │ │ │ ├── LinearProgress.tsx │ │ │ ├── Link.tsx │ │ │ ├── Map.tsx │ │ │ ├── Pie.tsx │ │ │ ├── Radar.tsx │ │ │ ├── RangeColumn.tsx │ │ │ ├── Rose.tsx │ │ │ ├── Scatter.tsx │ │ │ ├── Series.tsx │ │ │ ├── WordCloud.tsx │ │ │ └── index.ts │ │ └── util.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── react-vchart │ ├── .eslintignore │ ├── .eslintrc.js │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── bundler.config.js │ ├── demo │ │ ├── index.html │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Switch.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── util.ts │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── VChart.tsx │ │ ├── VChartSimple.tsx │ │ ├── charts │ │ │ ├── AreaChart.tsx │ │ │ ├── Bar3dChart.tsx │ │ │ ├── BarChart.tsx │ │ │ ├── BaseChart.tsx │ │ │ ├── BoxPlotChart.tsx │ │ │ ├── CirclePackingChart.tsx │ │ │ ├── CircularProgressChart.tsx │ │ │ ├── CommonChart.tsx │ │ │ ├── CorrelationChart.tsx │ │ │ ├── Funnel3dChart.tsx │ │ │ ├── FunnelChart.tsx │ │ │ ├── GaugeChart.tsx │ │ │ ├── HeatmapChart.tsx │ │ │ ├── Histogram3dChart.tsx │ │ │ ├── HistogramChart.tsx │ │ │ ├── LineChart.tsx │ │ │ ├── LinearProgressChart.tsx │ │ │ ├── LiquidChart.tsx │ │ │ ├── MapChart.tsx │ │ │ ├── MosaicChart.tsx │ │ │ ├── PictogramChart.tsx │ │ │ ├── Pie3dChart.tsx │ │ │ ├── PieChart.tsx │ │ │ ├── RadarChart.tsx │ │ │ ├── RangeAreaChart.tsx │ │ │ ├── RangeColumn3dChart.tsx │ │ │ ├── RangeColumnChart.tsx │ │ │ ├── RoseChart.tsx │ │ │ ├── SankeyChart.tsx │ │ │ ├── ScatterChart.tsx │ │ │ ├── SequenceChart.tsx │ │ │ ├── SunburstChart.tsx │ │ │ ├── TreemapChart.tsx │ │ │ ├── VennChart.tsx │ │ │ ├── WaterfallChart.tsx │ │ │ ├── WordCloud3dChart.tsx │ │ │ ├── WordCloudChart.tsx │ │ │ ├── index.ts │ │ │ └── registers │ │ │ │ ├── cartesian.ts │ │ │ │ ├── polar.ts │ │ │ │ └── simple.ts │ │ ├── components │ │ │ ├── Axis.tsx │ │ │ ├── BaseComponent.tsx │ │ │ ├── Brush.tsx │ │ │ ├── ContinuousLegend.tsx │ │ │ ├── Crosshair.tsx │ │ │ ├── DataZoom.tsx │ │ │ ├── Indicator.tsx │ │ │ ├── Legend.tsx │ │ │ ├── Mark.tsx │ │ │ ├── MarkArea.tsx │ │ │ ├── MarkLine.tsx │ │ │ ├── MarkPoint.tsx │ │ │ ├── Player.tsx │ │ │ ├── Region.tsx │ │ │ ├── ScrollBar.tsx │ │ │ ├── Title.tsx │ │ │ ├── index.ts │ │ │ └── tooltip │ │ │ │ ├── BaseTooltip.tsx │ │ │ │ ├── CanvasTooltip.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.tsx │ │ ├── constants.ts │ │ ├── containers │ │ │ └── withContainer.tsx │ │ ├── context │ │ │ ├── chart.tsx │ │ │ └── stage.tsx │ │ ├── eventsUtils.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── register.ts │ │ ├── series │ │ │ ├── Area.tsx │ │ │ ├── Bar.tsx │ │ │ ├── Bar3d.tsx │ │ │ ├── BaseSeries.tsx │ │ │ ├── BoxPlot.tsx │ │ │ ├── CirclePacking.tsx │ │ │ ├── CircularProgress.tsx │ │ │ ├── Correlation.tsx │ │ │ ├── Dot.tsx │ │ │ ├── Funnel.tsx │ │ │ ├── Funnel3d.tsx │ │ │ ├── Gauge.tsx │ │ │ ├── GaugePointer.tsx │ │ │ ├── Heatmap.tsx │ │ │ ├── Line.tsx │ │ │ ├── LinearProgress.tsx │ │ │ ├── Link.tsx │ │ │ ├── Liquid.tsx │ │ │ ├── Map.tsx │ │ │ ├── Mosaic.tsx │ │ │ ├── Pictogram.tsx │ │ │ ├── Pie.tsx │ │ │ ├── Pie3d.tsx │ │ │ ├── Radar.tsx │ │ │ ├── RangeArea.tsx │ │ │ ├── RangeColumn.tsx │ │ │ ├── RangeColumn3d.tsx │ │ │ ├── Rose.tsx │ │ │ ├── Sankey.tsx │ │ │ ├── Scatter.tsx │ │ │ ├── Series.tsx │ │ │ ├── Sunburst.tsx │ │ │ ├── Treemap.tsx │ │ │ ├── Venn.tsx │ │ │ ├── Waterfall.tsx │ │ │ ├── WordCloud.tsx │ │ │ ├── WordCloud3d.tsx │ │ │ └── index.ts │ │ └── util.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── taro-vchart │ ├── .bundle │ │ └── config │ ├── .eslintrc.js │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── bundler.config.js │ ├── config │ │ ├── dev.js │ │ ├── index.js │ │ └── prod.js │ ├── gallery │ │ ├── app.config.ts │ │ ├── app.scss │ │ ├── app.ts │ │ ├── data │ │ │ ├── area.js │ │ │ ├── bar.js │ │ │ ├── boxplot.js │ │ │ ├── crosshair.js │ │ │ ├── dual-axis.js │ │ │ ├── funnel.js │ │ │ ├── horizontal-bar.js │ │ │ ├── line.js │ │ │ ├── pie.js │ │ │ ├── radar.js │ │ │ ├── ring.js │ │ │ ├── rose.js │ │ │ ├── sankey.js │ │ │ ├── scatter.js │ │ │ └── wordcloud.js │ │ ├── index.html │ │ └── pages │ │ │ ├── chart │ │ │ ├── index.config.ts │ │ │ ├── index.tsx │ │ │ └── vchart.ts │ │ │ └── index │ │ │ ├── index.config.ts │ │ │ └── index.tsx │ ├── package.json │ ├── project.config.json │ ├── project.lark.json │ ├── project.tt.json │ ├── rollup.config.js │ ├── src │ │ ├── chart │ │ │ └── index.ts │ │ ├── charts │ │ │ ├── AreaChart.tsx │ │ │ ├── Bar3dChart.tsx │ │ │ ├── BarChart.tsx │ │ │ ├── BoxPlotChart.tsx │ │ │ ├── CirclePackingChart.tsx │ │ │ ├── CircularProgressChart.tsx │ │ │ ├── CommonChart.tsx │ │ │ ├── CorrelationChart.tsx │ │ │ ├── Funnel3dChart.tsx │ │ │ ├── FunnelChart.tsx │ │ │ ├── GaugeChart.tsx │ │ │ ├── HeatmapChart.tsx │ │ │ ├── Histogram3dChart.tsx │ │ │ ├── HistogramChart.tsx │ │ │ ├── LineChart.tsx │ │ │ ├── LinearProgressChart.tsx │ │ │ ├── LiquidChart.tsx │ │ │ ├── MapChart.tsx │ │ │ ├── Pie3dChart.tsx │ │ │ ├── PieChart.tsx │ │ │ ├── RadarChart.tsx │ │ │ ├── RangeColumn3dChart.tsx │ │ │ ├── RangeColumnChart.tsx │ │ │ ├── RoseChart.tsx │ │ │ ├── SankeyChart.tsx │ │ │ ├── ScatterChart.tsx │ │ │ ├── SequenceChart.tsx │ │ │ ├── SunburstChart.tsx │ │ │ ├── TreemapChart.tsx │ │ │ ├── VennChart.tsx │ │ │ ├── WaterfallChart.tsx │ │ │ ├── WordCloud3dChart.tsx │ │ │ ├── WordCloudChart.tsx │ │ │ ├── generate-charts.tsx │ │ │ ├── index.ts │ │ │ └── registers │ │ │ │ ├── cartesian.ts │ │ │ │ ├── polar.ts │ │ │ │ └── simple.ts │ │ ├── components │ │ │ ├── general-chart │ │ │ │ └── index.tsx │ │ │ └── web-chart │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── simple.tsx │ │ ├── typings │ │ │ ├── IChartProps.ts │ │ │ ├── IDomRef.ts │ │ │ ├── IEvent.ts │ │ │ ├── IOptions.ts │ │ │ ├── IVChart.ts │ │ │ ├── VChartEnvType.ts │ │ │ └── index.ts │ │ ├── utils │ │ │ ├── container-styles │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── tt-canvas │ │ │ │ └── index.ts │ │ └── vchart.tsx │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── tt-vchart │ ├── README.md │ ├── app.js │ ├── app.json │ ├── gallery │ │ ├── data │ │ │ ├── area.js │ │ │ ├── bar.js │ │ │ ├── boxplot.js │ │ │ ├── dual-axis.js │ │ │ ├── funnel.js │ │ │ ├── horizontal-bar.js │ │ │ ├── line.js │ │ │ ├── pie.js │ │ │ ├── radar.js │ │ │ ├── ring.js │ │ │ ├── rose.js │ │ │ ├── sankey.js │ │ │ ├── scatter.js │ │ │ └── wordcloud.js │ │ ├── img │ │ │ ├── area.png │ │ │ ├── bar.png │ │ │ ├── boxplot.png │ │ │ ├── contour.png │ │ │ ├── custome-tooltip.png │ │ │ ├── dashboard.png │ │ │ ├── dual-axis.png │ │ │ ├── funnel.png │ │ │ ├── horizontal-bar.png │ │ │ ├── indicator.png │ │ │ ├── line.png │ │ │ ├── map.png │ │ │ ├── pie.png │ │ │ ├── pivot-combination.png │ │ │ ├── radar.png │ │ │ ├── ring.png │ │ │ ├── rose.png │ │ │ ├── sankey.png │ │ │ ├── scatter.png │ │ │ └── wordcloud.png │ │ └── pages │ │ │ ├── chart │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.ttml │ │ │ └── index.ttss │ │ │ └── index │ │ │ ├── index.js │ │ │ ├── index.ttml │ │ │ └── index.ttss │ ├── package.json │ ├── project.config.json │ └── src │ │ ├── index.js │ │ ├── index.json │ │ ├── index.ttml │ │ ├── index.ttss │ │ └── vchart │ │ └── index.js ├── vchart-extension │ ├── .eslintrc.js │ ├── README.md │ ├── __tests__ │ │ └── runtime │ │ │ └── browser │ │ │ ├── data │ │ │ ├── ranking-bar.ts │ │ │ └── sequence-scatter │ │ │ │ ├── README.md │ │ │ │ ├── Training_process1 │ │ │ │ ├── data.json │ │ │ │ ├── info.json │ │ │ │ └── label.json │ │ │ │ └── Training_process2 │ │ │ │ ├── data.json │ │ │ │ └── info.json │ │ │ ├── index.html │ │ │ ├── index.page.ts │ │ │ ├── scripts │ │ │ ├── index.page.local.template.ts │ │ │ ├── initVite.ts │ │ │ └── vite.config.local.template.ts │ │ │ ├── test-page │ │ │ ├── .gitignore │ │ │ ├── 3d │ │ │ │ ├── area.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── funnel.ts │ │ │ │ ├── line.ts │ │ │ │ ├── pie.ts │ │ │ │ ├── scatter.ts │ │ │ │ └── word-cloud.ts │ │ │ ├── bar-link │ │ │ │ ├── percent-bar.ts │ │ │ │ └── stacked-bar.ts │ │ │ ├── bar-regression-line │ │ │ │ └── poly.ts │ │ │ ├── candlestick.ts │ │ │ ├── conversion-funnel.ts │ │ │ ├── histogram-regression-line │ │ │ │ └── kde.ts │ │ │ ├── map-label │ │ │ │ └── map-label.ts │ │ │ ├── ranking-bar.ts │ │ │ ├── ranking-list-2.ts │ │ │ ├── ranking-list-3.ts │ │ │ ├── ranking-list.ts │ │ │ ├── scatter-regression-line │ │ │ │ ├── group.ts │ │ │ │ ├── linear.ts │ │ │ │ └── logistic.ts │ │ │ ├── sequence-scatter-kde.ts │ │ │ ├── sequence-scatter-link-classification.ts │ │ │ ├── sequence-scatter-link-neighborhood.ts │ │ │ ├── sequence-scatter-pixel.ts │ │ │ ├── series-break │ │ │ │ ├── area.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── common.ts │ │ │ │ ├── group-area.ts │ │ │ │ ├── group-bar.ts │ │ │ │ ├── h-bar.ts │ │ │ │ ├── line-2.ts │ │ │ │ ├── line.ts │ │ │ │ └── stack-area.ts │ │ │ ├── series-label │ │ │ │ ├── percent-bar.ts │ │ │ │ └── stack-area.ts │ │ │ └── utils.ts │ │ │ └── vite.config.js │ ├── bundler.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── charts │ │ │ ├── 3d │ │ │ │ ├── arc-3d.ts │ │ │ │ ├── enum.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── pyramid-3d.ts │ │ │ │ ├── rect-3d.ts │ │ │ │ └── util.ts │ │ │ ├── axis-3d │ │ │ │ ├── axis-3d-mixin.ts │ │ │ │ ├── band-axis.ts │ │ │ │ ├── index.ts │ │ │ │ ├── linear-axis.ts │ │ │ │ ├── log-axis.ts │ │ │ │ ├── symlog-axis.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── time-axis.ts │ │ │ │ └── util.ts │ │ │ ├── bar-3d │ │ │ │ ├── animation.ts │ │ │ │ ├── chart-spec-transformer.ts │ │ │ │ ├── chart.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── series-spec-transformer.ts │ │ │ │ ├── series.ts │ │ │ │ └── theme.ts │ │ │ ├── candlestick │ │ │ │ ├── candlestick-transformer.ts │ │ │ │ ├── candlestick.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── mark │ │ │ │ │ ├── candlestick.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── series │ │ │ │ │ ├── animation.ts │ │ │ │ │ ├── candlestick.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── theme.ts │ │ │ │ │ └── tooltip-helper.ts │ │ │ │ └── util.ts │ │ │ ├── combination-candlestick │ │ │ │ ├── combination-candlestick-transformer.ts │ │ │ │ ├── combination-candlestick.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── conversion-funnel │ │ │ │ ├── arrow-data-transform.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── conversion-funnel-transformer.ts │ │ │ │ ├── conversion-funnel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ │ ├── funnel-3d │ │ │ │ ├── chart.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── series-spec-transformer.ts │ │ │ │ ├── series.ts │ │ │ │ └── theme.ts │ │ │ ├── histogram-3d │ │ │ │ ├── chart.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── image-cloud │ │ │ │ ├── image-cloud-transformer.ts │ │ │ │ ├── image-cloud.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── series │ │ │ │ │ ├── animation.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── image-cloud.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── tooltip-helper.ts │ │ │ ├── pictogram │ │ │ │ ├── element-highlight-by-graphic-name.ts │ │ │ │ ├── element-select-by-graphic-name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── pictogram-transformer.ts │ │ │ │ ├── pictogram.ts │ │ │ │ └── series │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── pictogram-transformer.ts │ │ │ │ │ ├── pictogram.ts │ │ │ │ │ ├── svg-source.ts │ │ │ │ │ ├── tooltip-helper.ts │ │ │ │ │ └── transform.ts │ │ │ ├── pie-3d │ │ │ │ ├── animation.ts │ │ │ │ ├── chart-spec-transformer.ts │ │ │ │ ├── chart.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── series-spec-transformer.ts │ │ │ │ ├── series.ts │ │ │ │ └── theme.ts │ │ │ ├── range-column-3d │ │ │ │ ├── chart-spec-transformer.ts │ │ │ │ ├── chart.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── series-spec-transformer.ts │ │ │ │ └── series.ts │ │ │ ├── ranking-bar │ │ │ │ ├── interface.ts │ │ │ │ ├── ranking-bar-transformer.ts │ │ │ │ └── ranking-bar.ts │ │ │ ├── ranking-list │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── ranking-list-transformer.ts │ │ │ │ ├── ranking-list.ts │ │ │ │ └── utils.ts │ │ │ ├── sequence-scatter-kde │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sequence-scatter-kde-transformer.ts │ │ │ │ ├── sequence-scatter-kde.ts │ │ │ │ └── utils.ts │ │ │ ├── sequence-scatter-link │ │ │ │ ├── interface.ts │ │ │ │ ├── sequence-scatter-link-transformer.ts │ │ │ │ └── sequence-scatter-link.ts │ │ │ ├── sequence-scatter-pixel │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sequence-scatter-pixel-transformer.ts │ │ │ │ ├── sequence-scatter-pixel.ts │ │ │ │ └── utils.ts │ │ │ └── word-cloud-3d │ │ │ │ ├── animation.ts │ │ │ │ ├── chart-spec-transformer.ts │ │ │ │ ├── chart.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── series.ts │ │ │ │ └── theme.ts │ │ ├── components │ │ │ ├── bar-link │ │ │ │ ├── bar-link.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── type.ts │ │ │ │ └── util.ts │ │ │ ├── bar-regression-line │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── histogram-regression-line │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── map-label │ │ │ │ ├── index.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── map-label-transformer.ts │ │ │ │ ├── map-label.ts │ │ │ │ ├── theme.ts │ │ │ │ └── type.ts │ │ │ ├── regression-line │ │ │ │ ├── index.ts │ │ │ │ ├── regression-line.ts │ │ │ │ └── type.ts │ │ │ ├── scatter-regression-line │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── series-break │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── series-break.ts │ │ │ │ ├── type.ts │ │ │ │ └── util.ts │ │ │ └── series-label │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── series-label.ts │ │ │ │ ├── type.ts │ │ │ │ └── util.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ ├── type │ │ │ ├── index.ts │ │ │ └── type.ts │ │ └── utils │ │ │ ├── element.ts │ │ │ └── math.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── vchart-schema │ ├── .eslintrc.js │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── bar-chart-spec.test.ts │ │ └── pie-chart-spec.test.ts │ ├── jest.config.js │ ├── package.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── vchart.json ├── vchart-types │ ├── .eslintrc.js │ ├── README.md │ ├── package.json │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── types │ │ ├── animation │ │ ├── animate-manager.d.ts │ │ ├── animation-planner.d.ts │ │ ├── config.d.ts │ │ ├── grammar-dector.d.ts │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── sequential-animate.d.ts │ │ ├── spec.d.ts │ │ ├── state-transition.d.ts │ │ ├── strategy │ │ │ ├── common.d.ts │ │ │ ├── horizontal-bar-split.d.ts │ │ │ └── vertical-bar-split.d.ts │ │ └── utils.d.ts │ │ ├── chart │ │ ├── area │ │ │ ├── area-transformer.d.ts │ │ │ ├── area.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── bar │ │ │ ├── 3d │ │ │ │ ├── bar-3d-transformer.d.ts │ │ │ │ ├── bar-3d.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── bar-3d.d.ts │ │ │ ├── bar-transformer.d.ts │ │ │ ├── bar.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── base-chart.d.ts │ │ ├── base │ │ │ ├── base-chart-transformer.d.ts │ │ │ ├── base-chart.d.ts │ │ │ ├── index.d.ts │ │ │ └── util.d.ts │ │ ├── box-plot │ │ │ ├── box-plot-transformer.d.ts │ │ │ ├── box-plot.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── cartesian │ │ │ ├── cartesian-transformer.d.ts │ │ │ ├── cartesian.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── chart-meta │ │ │ └── data.d.ts │ │ ├── circle-packing │ │ │ ├── circle-packing-transformer.d.ts │ │ │ ├── circle-packing.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── common │ │ │ ├── common-transformer.d.ts │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── correlation │ │ │ ├── correlation-transformer.d.ts │ │ │ ├── correlation.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── funnel │ │ │ ├── 3d │ │ │ │ ├── funnel-3d.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── base.d.ts │ │ │ ├── funnel-3d.d.ts │ │ │ ├── funnel-transformer.d.ts │ │ │ ├── funnel.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── util.d.ts │ │ ├── gauge │ │ │ ├── gauge-transformer.d.ts │ │ │ ├── gauge.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── heatmap │ │ │ ├── heatmap-transformer.d.ts │ │ │ ├── heatmap.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── histogram │ │ │ ├── 3d │ │ │ │ ├── histogram-3d.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── base.d.ts │ │ │ ├── base │ │ │ │ ├── base.d.ts │ │ │ │ ├── histogram-base-transformer.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── histogram-3d.d.ts │ │ │ ├── histogram-transformer.d.ts │ │ │ ├── histogram.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── index.d.ts │ │ ├── interface │ │ │ ├── chart.d.ts │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ └── type.d.ts │ │ ├── line │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── line-transformer.d.ts │ │ │ └── line.d.ts │ │ ├── liquid │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── liquid-transformer.d.ts │ │ │ └── liquid.d.ts │ │ ├── map │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── map-transformer.d.ts │ │ │ └── map.d.ts │ │ ├── mosaic │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── mosaic-transformer.d.ts │ │ │ └── mosaic.d.ts │ │ ├── pictogram │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── pictogram-transformer.d.ts │ │ │ └── pictogram.d.ts │ │ ├── pie │ │ │ ├── 3d │ │ │ │ ├── index.d.ts │ │ │ │ └── pie-3d.d.ts │ │ │ ├── base.d.ts │ │ │ ├── base │ │ │ │ ├── base.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── pie-transformer.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── pie-3d.d.ts │ │ │ └── pie.d.ts │ │ ├── polar │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── polar-transformer.d.ts │ │ │ ├── polar.d.ts │ │ │ ├── progress-like.d.ts │ │ │ ├── progress-like │ │ │ │ ├── index.d.ts │ │ │ │ └── progress-like-transformer.d.ts │ │ │ ├── rose-like.d.ts │ │ │ └── rose-like │ │ │ │ ├── index.d.ts │ │ │ │ └── rose-like-transformer.d.ts │ │ ├── progress │ │ │ ├── circular │ │ │ │ ├── circular-progress-transformer.d.ts │ │ │ │ ├── circular.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── interface.d.ts │ │ │ └── linear │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── linear-progress-transformer.d.ts │ │ │ │ └── linear.d.ts │ │ ├── radar │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── radar-transformer.d.ts │ │ │ └── radar.d.ts │ │ ├── range-area │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── range-area-transformer.d.ts │ │ │ └── range-area.d.ts │ │ ├── range-column │ │ │ ├── 3d │ │ │ │ ├── index.d.ts │ │ │ │ ├── range-column-3d-transformer.d.ts │ │ │ │ └── range-column-3d.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── range-column-3d.d.ts │ │ │ ├── range-column-transformer.d.ts │ │ │ └── range-column.d.ts │ │ ├── rose │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── rose-transformer.d.ts │ │ │ └── rose.d.ts │ │ ├── sankey │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── sankey-transformer.d.ts │ │ │ └── sankey.d.ts │ │ ├── scatter │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── scatter-transformer.d.ts │ │ │ └── scatter.d.ts │ │ ├── sequence │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── sequence-transformer.d.ts │ │ │ └── sequence.d.ts │ │ ├── stack.d.ts │ │ ├── sunburst │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── sunburst-transformer.d.ts │ │ │ └── sunburst.d.ts │ │ ├── treemap │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── treemap-transformer.d.ts │ │ │ └── treemap.d.ts │ │ ├── util.d.ts │ │ ├── venn │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── venn-transformer.d.ts │ │ │ └── venn.d.ts │ │ ├── waterfall │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── waterfall-transformer.d.ts │ │ │ └── waterfall.d.ts │ │ └── word-cloud │ │ │ ├── 3d │ │ │ ├── index.d.ts │ │ │ ├── word-cloud-3d-transformer.d.ts │ │ │ └── word-cloud-3d.d.ts │ │ │ ├── base.d.ts │ │ │ ├── base │ │ │ ├── base.d.ts │ │ │ ├── index.d.ts │ │ │ └── word-cloud-base-transformer.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── word-cloud-3d.d.ts │ │ │ ├── word-cloud-transformer.d.ts │ │ │ └── word-cloud.d.ts │ │ ├── compile │ │ ├── compilable-base.d.ts │ │ ├── compiler.d.ts │ │ ├── data │ │ │ ├── compilable-data.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── grammar-item.d.ts │ │ ├── interface │ │ │ ├── compilable-item.d.ts │ │ │ ├── compiler.d.ts │ │ │ └── index.d.ts │ │ ├── mark │ │ │ ├── compilable-mark.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── mark-data.d.ts │ │ │ ├── mark-state-manager.d.ts │ │ │ └── util.d.ts │ │ ├── morph.d.ts │ │ ├── signal │ │ │ ├── compilable-signal.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── signal-manager.d.ts │ │ │ └── state-manager.d.ts │ │ ├── state-manager.d.ts │ │ └── util.d.ts │ │ ├── component │ │ ├── axis │ │ │ ├── base-axis.d.ts │ │ │ ├── cartesian │ │ │ │ ├── axis.d.ts │ │ │ │ ├── band-axis.d.ts │ │ │ │ ├── config.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── spec.d.ts │ │ │ │ │ └── theme.d.ts │ │ │ │ ├── linear-axis.d.ts │ │ │ │ ├── log-axis.d.ts │ │ │ │ ├── symlog-axis.d.ts │ │ │ │ ├── time-axis.d.ts │ │ │ │ └── util │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── time.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── interface │ │ │ │ ├── common.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── spec.d.ts │ │ │ │ └── theme.d.ts │ │ │ ├── mixin │ │ │ │ ├── band-axis-mixin.d.ts │ │ │ │ ├── linear-axis-mixin.d.ts │ │ │ │ └── util │ │ │ │ │ └── break-data.d.ts │ │ │ ├── polar │ │ │ │ ├── axis.d.ts │ │ │ │ ├── band-axis.d.ts │ │ │ │ ├── config.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── spec.d.ts │ │ │ │ │ └── theme.d.ts │ │ │ │ ├── linear-axis.d.ts │ │ │ │ └── util │ │ │ │ │ ├── common.d.ts │ │ │ │ │ └── index.d.ts │ │ │ └── util.d.ts │ │ ├── base │ │ │ ├── base-component-transformer.d.ts │ │ │ ├── base-component.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── util.d.ts │ │ ├── brush │ │ │ ├── brush.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── common │ │ │ └── trigger │ │ │ │ ├── config.d.ts │ │ │ │ ├── desktop.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ └── mobile.d.ts │ │ ├── crosshair │ │ │ ├── base.d.ts │ │ │ ├── cartesian.d.ts │ │ │ ├── config.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface │ │ │ │ ├── cartesian.d.ts │ │ │ │ ├── common.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── polar.d.ts │ │ │ │ ├── spec.d.ts │ │ │ │ └── theme.d.ts │ │ │ ├── polar.d.ts │ │ │ ├── util.d.ts │ │ │ └── utils │ │ │ │ ├── cartesian.d.ts │ │ │ │ ├── common.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── polar.d.ts │ │ ├── custom-mark │ │ │ ├── custom-mark.d.ts │ │ │ └── index.d.ts │ │ ├── data-zoom │ │ │ ├── constant.d.ts │ │ │ ├── data-filter-base-component.d.ts │ │ │ ├── data-filter-event.d.ts │ │ │ ├── data-zoom │ │ │ │ ├── data-zoom-transformer.d.ts │ │ │ │ ├── data-zoom.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── scroll-bar │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ └── scroll-bar.d.ts │ │ │ └── util.d.ts │ │ ├── geo │ │ │ ├── geo-coordinate.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── projection.d.ts │ │ ├── index.d.ts │ │ ├── indicator │ │ │ ├── index.d.ts │ │ │ ├── indicator.d.ts │ │ │ ├── interface.d.ts │ │ │ └── util.d.ts │ │ ├── interface │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ ├── theme.d.ts │ │ │ ├── tooltip-helper.d.ts │ │ │ └── type.d.ts │ │ ├── label │ │ │ ├── base-label.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── label-transformer.d.ts │ │ │ ├── label.d.ts │ │ │ ├── total-label.d.ts │ │ │ ├── totalLabel.d.ts │ │ │ └── util.d.ts │ │ ├── legend │ │ │ ├── base-legend.d.ts │ │ │ ├── continuous │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── legend.d.ts │ │ │ │ └── util.d.ts │ │ │ ├── discrete │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── legend.d.ts │ │ │ │ └── util.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── util.d.ts │ │ ├── map-label │ │ │ ├── component.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── layout.d.ts │ │ ├── marker │ │ │ ├── base-marker.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── mark-area │ │ │ │ ├── base-mark-area.d.ts │ │ │ │ ├── cartesian-mark-area.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── spec.d.ts │ │ │ │ │ └── theme.d.ts │ │ │ │ ├── mark-area.d.ts │ │ │ │ └── polar-mark-area.d.ts │ │ │ ├── mark-line │ │ │ │ ├── base-mark-line.d.ts │ │ │ │ ├── cartesian-mark-line.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── spec.d.ts │ │ │ │ │ └── theme.d.ts │ │ │ │ ├── mark-line.d.ts │ │ │ │ ├── polar-mark-line.d.ts │ │ │ │ └── util.d.ts │ │ │ ├── mark-point │ │ │ │ ├── base-mark-point.d.ts │ │ │ │ ├── cartesian-mark-point.d.ts │ │ │ │ ├── geo-mark-point.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── spec.d.ts │ │ │ │ │ └── theme.d.ts │ │ │ │ ├── mark-point.d.ts │ │ │ │ └── polar-mark-point.d.ts │ │ │ └── utils.d.ts │ │ ├── player │ │ │ ├── index.d.ts │ │ │ ├── interface │ │ │ │ ├── index.d.ts │ │ │ │ ├── spec.d.ts │ │ │ │ └── theme.d.ts │ │ │ ├── player.d.ts │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── orient.d.ts │ │ │ │ └── transform.d.ts │ │ ├── poptip │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── title │ │ │ ├── index.d.ts │ │ │ ├── interface │ │ │ │ ├── index.d.ts │ │ │ │ ├── spec.d.ts │ │ │ │ └── theme.d.ts │ │ │ ├── title.d.ts │ │ │ └── utils.d.ts │ │ ├── tooltip │ │ │ ├── constant.d.ts │ │ │ ├── handler │ │ │ │ ├── base.d.ts │ │ │ │ ├── canvas │ │ │ │ │ ├── canvas-tooltip-handler.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── constants.d.ts │ │ │ │ ├── dom │ │ │ │ │ ├── dom-tooltip-handler.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ ├── model │ │ │ │ │ │ ├── base-tooltip-model.d.ts │ │ │ │ │ │ ├── content-column-model.d.ts │ │ │ │ │ │ ├── content-model.d.ts │ │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ │ ├── shape-model.d.ts │ │ │ │ │ │ ├── style-constants.d.ts │ │ │ │ │ │ ├── text-model.d.ts │ │ │ │ │ │ ├── title-model.d.ts │ │ │ │ │ │ └── tooltip-model.d.ts │ │ │ │ │ └── util.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── style.d.ts │ │ │ │ └── utils │ │ │ │ │ ├── attribute.d.ts │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── compose.d.ts │ │ │ │ │ ├── get-spec.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── pattern.d.ts │ │ │ │ │ └── position.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface │ │ │ │ ├── common.d.ts │ │ │ │ ├── event.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── spec.d.ts │ │ │ │ └── theme.d.ts │ │ │ ├── processor │ │ │ │ ├── base.d.ts │ │ │ │ ├── dimension-tooltip.d.ts │ │ │ │ ├── group-tooltip.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── mark-tooltip.d.ts │ │ │ │ └── util.d.ts │ │ │ ├── tooltip-transformer.d.ts │ │ │ ├── tooltip.d.ts │ │ │ └── utils │ │ │ │ ├── common.d.ts │ │ │ │ ├── compose.d.ts │ │ │ │ ├── get-spec.d.ts │ │ │ │ ├── get-value.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── pattern.d.ts │ │ │ │ └── show-tooltip.d.ts │ │ └── util.d.ts │ │ ├── constant │ │ ├── attribute.d.ts │ │ ├── base.d.ts │ │ ├── box-plot.d.ts │ │ ├── correlation.d.ts │ │ ├── data.d.ts │ │ ├── event.d.ts │ │ ├── funnel.d.ts │ │ ├── gradient.d.ts │ │ ├── hierarchy.d.ts │ │ ├── index.d.ts │ │ ├── label.d.ts │ │ ├── layout.d.ts │ │ ├── marker.d.ts │ │ ├── polar.d.ts │ │ ├── scatter.d.ts │ │ ├── scroll-bar.d.ts │ │ ├── sunburst.d.ts │ │ ├── waterfall.d.ts │ │ └── word-cloud.d.ts │ │ ├── core │ │ ├── expression-function.d.ts │ │ ├── factory.d.ts │ │ ├── index.d.ts │ │ ├── instance-manager.d.ts │ │ ├── interface.d.ts │ │ ├── util.d.ts │ │ └── vchart.d.ts │ │ ├── data │ │ ├── initialize.d.ts │ │ ├── parser │ │ │ ├── array.d.ts │ │ │ └── scale.d.ts │ │ ├── register.d.ts │ │ └── transforms │ │ │ ├── add-property.d.ts │ │ │ ├── aggregation.d.ts │ │ │ ├── box-plot.d.ts │ │ │ ├── circle-packing.d.ts │ │ │ ├── copy-data-view.d.ts │ │ │ ├── correlation-center.d.ts │ │ │ ├── correlation.d.ts │ │ │ ├── data-key.d.ts │ │ │ ├── dimension-data.d.ts │ │ │ ├── dimension-statistics.d.ts │ │ │ ├── drill.d.ts │ │ │ ├── flatten.d.ts │ │ │ ├── funnel.d.ts │ │ │ ├── hierarchy-dimension-statistics.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── invalid-travel.d.ts │ │ │ ├── legend-data │ │ │ ├── continuous │ │ │ │ ├── continuous.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ └── discrete │ │ │ │ ├── discrete.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── link-dot-info.d.ts │ │ │ ├── lookup.d.ts │ │ │ ├── map.d.ts │ │ │ ├── marker-filter.d.ts │ │ │ ├── obj-flat.d.ts │ │ │ ├── pictogram.d.ts │ │ │ ├── pie.d.ts │ │ │ ├── regression.d.ts │ │ │ ├── sankey-links.d.ts │ │ │ ├── sankey-nodes.d.ts │ │ │ ├── sankey.d.ts │ │ │ ├── stack-split.d.ts │ │ │ ├── sunburst.d.ts │ │ │ ├── treemap.d.ts │ │ │ ├── venn.d.ts │ │ │ └── waterfall.d.ts │ │ ├── env │ │ ├── env.d.ts │ │ └── index.d.ts │ │ ├── event │ │ ├── bubble.d.ts │ │ ├── event-dispatcher.d.ts │ │ ├── event.d.ts │ │ ├── events │ │ │ ├── base.d.ts │ │ │ ├── dimension │ │ │ │ ├── base.d.ts │ │ │ │ ├── dimension-click.d.ts │ │ │ │ ├── dimension-hover.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ └── util │ │ │ │ │ ├── cartesian.d.ts │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── polar.d.ts │ │ │ └── index.d.ts │ │ ├── index.d.ts │ │ └── interface.d.ts │ │ ├── index-harmony-mini.d.ts │ │ ├── index-harmony-simple.d.ts │ │ ├── index-harmony.d.ts │ │ ├── index-lark.d.ts │ │ ├── index-wx-simple.d.ts │ │ ├── index-wx.d.ts │ │ ├── index.d.ts │ │ ├── interaction │ │ ├── config.d.ts │ │ ├── dimension-trigger.d.ts │ │ ├── drill │ │ │ ├── drillable.d.ts │ │ │ └── index.d.ts │ │ ├── index.d.ts │ │ ├── interaction.d.ts │ │ ├── interface.d.ts │ │ ├── interface │ │ │ ├── common.d.ts │ │ │ ├── spec.d.ts │ │ │ └── trigger.d.ts │ │ ├── trigger.d.ts │ │ ├── triggers │ │ │ ├── base.d.ts │ │ │ ├── dimension-hover.d.ts │ │ │ ├── element-active-by-legend.d.ts │ │ │ ├── element-active.d.ts │ │ │ ├── element-highlight-by-group.d.ts │ │ │ ├── element-highlight-by-key.d.ts │ │ │ ├── element-highlight-by-legend.d.ts │ │ │ ├── element-highlight-by-name.d.ts │ │ │ ├── element-highlight.d.ts │ │ │ ├── element-select.d.ts │ │ │ ├── enum.d.ts │ │ │ └── util.d.ts │ │ └── zoom │ │ │ ├── index.d.ts │ │ │ └── zoomable.d.ts │ │ ├── layout │ │ ├── base-layout.d.ts │ │ ├── grid-layout │ │ │ └── grid-layout.d.ts │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── layout-item.d.ts │ │ ├── layout3d │ │ │ └── index.d.ts │ │ └── util.d.ts │ │ ├── mark │ │ ├── arc-3d.d.ts │ │ ├── arc.d.ts │ │ ├── area.d.ts │ │ ├── base │ │ │ ├── base-line.d.ts │ │ │ ├── base-mark.d.ts │ │ │ └── index.d.ts │ │ ├── box-plot.d.ts │ │ ├── cell.d.ts │ │ ├── component.d.ts │ │ ├── glyph.d.ts │ │ ├── group.d.ts │ │ ├── image.d.ts │ │ ├── index.d.ts │ │ ├── interface │ │ │ ├── common.d.ts │ │ │ ├── enum.d.ts │ │ │ ├── index.d.ts │ │ │ ├── mark.d.ts │ │ │ └── type.d.ts │ │ ├── label.d.ts │ │ ├── line.d.ts │ │ ├── link-path.d.ts │ │ ├── liquid.d.ts │ │ ├── mark-set │ │ │ └── index.d.ts │ │ ├── path.d.ts │ │ ├── polygon │ │ │ ├── base-polygon.d.ts │ │ │ ├── polygon.d.ts │ │ │ └── pyramid-3d.d.ts │ │ ├── progress-arc.d.ts │ │ ├── rect-3d.d.ts │ │ ├── rect.d.ts │ │ ├── ripple.d.ts │ │ ├── rule.d.ts │ │ ├── symbol.d.ts │ │ ├── text.d.ts │ │ ├── transform │ │ │ ├── data-sampling.d.ts │ │ │ ├── filter.d.ts │ │ │ ├── map.d.ts │ │ │ └── symbol-overlap.d.ts │ │ └── utils │ │ │ ├── common.d.ts │ │ │ ├── glyph.d.ts │ │ │ ├── index.d.ts │ │ │ └── line.d.ts │ │ ├── model │ │ ├── base-model-transformer.d.ts │ │ ├── base-model.d.ts │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── layout-item.d.ts │ │ ├── layout-model.d.ts │ │ └── tooltip-helper.d.ts │ │ ├── plugin │ │ ├── base │ │ │ ├── base-plugin-service.d.ts │ │ │ ├── base-plugin.d.ts │ │ │ └── interface.d.ts │ │ ├── chart │ │ │ ├── formatter │ │ │ │ ├── formatter.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── media-query │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── spec.d.ts │ │ │ │ ├── media-query.d.ts │ │ │ │ └── util │ │ │ │ │ ├── action.d.ts │ │ │ │ │ ├── filter.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── query.d.ts │ │ │ ├── plugin-service.d.ts │ │ │ ├── register.d.ts │ │ │ └── resize-zoom │ │ │ │ ├── index.d.ts │ │ │ │ └── zoom.d.ts │ │ ├── components │ │ │ ├── axis-sync-plugin │ │ │ │ ├── axis-sync.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── tick-align-transform.d.ts │ │ │ │ └── zero-align-transform.d.ts │ │ │ ├── axis-sync │ │ │ │ ├── axis-sync.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── tick-align-transform.d.ts │ │ │ │ └── zero-align-transform.d.ts │ │ │ ├── basic-plugin.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── plugin-service.d.ts │ │ │ ├── register.d.ts │ │ │ └── tooltip-handler │ │ │ │ ├── base.d.ts │ │ │ │ ├── canvas-tooltip-handler.d.ts │ │ │ │ ├── canvas │ │ │ │ ├── canvas-tooltip-handler.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── constants.d.ts │ │ │ │ ├── dom-tooltip-handler.d.ts │ │ │ │ ├── dom │ │ │ │ ├── constant.d.ts │ │ │ │ ├── dom-tooltip-handler.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── model │ │ │ │ │ ├── base-tooltip-model.d.ts │ │ │ │ │ ├── content-column-model.d.ts │ │ │ │ │ ├── content-model.d.ts │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ ├── shape-model.d.ts │ │ │ │ │ ├── style-constants.d.ts │ │ │ │ │ ├── text-model.d.ts │ │ │ │ │ ├── title-model.d.ts │ │ │ │ │ └── tooltip-model.d.ts │ │ │ │ └── utils │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── style.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface │ │ │ │ ├── common.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── style.d.ts │ │ │ │ └── utils │ │ │ │ ├── attribute.d.ts │ │ │ │ ├── common.d.ts │ │ │ │ ├── compose.d.ts │ │ │ │ ├── get-spec.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── pattern.d.ts │ │ │ │ ├── position.d.ts │ │ │ │ ├── style.d.ts │ │ │ │ └── svg.d.ts │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── other.d.ts │ │ ├── series │ │ │ └── interface.d.ts │ │ └── vchart │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── plugin-service.d.ts │ │ │ ├── register.d.ts │ │ │ └── rotate │ │ │ ├── index.d.ts │ │ │ └── rotate.d.ts │ │ ├── region │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── region-transformer.d.ts │ │ └── region.d.ts │ │ ├── scale │ │ ├── color-ordinal-scale.d.ts │ │ ├── global-scale.d.ts │ │ └── interface.d.ts │ │ ├── series │ │ ├── area │ │ │ ├── animation.d.ts │ │ │ ├── area-transformer.d.ts │ │ │ ├── area.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helpter.d.ts │ │ ├── bar │ │ │ ├── animation.d.ts │ │ │ ├── bar-3d-transformer.d.ts │ │ │ ├── bar-3d.d.ts │ │ │ ├── bar-transformer.d.ts │ │ │ ├── bar.d.ts │ │ │ ├── constant.d.ts │ │ │ └── interface.d.ts │ │ ├── base │ │ │ ├── base-series-transformer.d.ts │ │ │ ├── base-series.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── group.d.ts │ │ │ ├── index.d.ts │ │ │ ├── series-data.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── box-plot │ │ │ ├── animation.d.ts │ │ │ ├── box-plot.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── cartesian │ │ │ ├── cartesian.d.ts │ │ │ ├── index.d.ts │ │ │ └── interface.d.ts │ │ ├── circle-packing │ │ │ ├── animation.d.ts │ │ │ ├── circle-packing.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── correlation │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── correlation-transformer.d.ts │ │ │ ├── correlation.d.ts │ │ │ └── interface.d.ts │ │ ├── dot │ │ │ ├── config.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── dot.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── funnel │ │ │ ├── 3d │ │ │ │ ├── funnel-3d-transformer.d.ts │ │ │ │ ├── funnel-3d.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── funnel-3d.d.ts │ │ │ ├── funnel-transformer.d.ts │ │ │ ├── funnel.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── gauge │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── gauge-pointer-transformer.d.ts │ │ │ ├── gauge-pointer.d.ts │ │ │ ├── gauge-transformer.d.ts │ │ │ ├── gauge.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── pointer-tooltip-helper.d.ts │ │ ├── geo │ │ │ ├── geo.d.ts │ │ │ └── interface.d.ts │ │ ├── heatmap │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── heatmap-transformer.d.ts │ │ │ ├── heatmap.d.ts │ │ │ ├── interface.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── index.d.ts │ │ ├── interface │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ ├── series.d.ts │ │ │ ├── theme.d.ts │ │ │ ├── tooltip-helper.d.ts │ │ │ └── type.d.ts │ │ ├── line │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ └── line.d.ts │ │ ├── link │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── link.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── liquid │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── liquid.d.ts │ │ │ ├── tooltip-helper.d.ts │ │ │ └── util.d.ts │ │ ├── map │ │ │ ├── constant.d.ts │ │ │ ├── geo-source.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── map-transformer.d.ts │ │ │ ├── map.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── mixin │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── line-mixin-transformer.d.ts │ │ │ └── line-mixin.d.ts │ │ ├── mosaic │ │ │ ├── interface.d.ts │ │ │ └── mosaic.d.ts │ │ ├── pictogram │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── pictogram-transformer.d.ts │ │ │ ├── pictogram.d.ts │ │ │ ├── svg-source.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── pie │ │ │ ├── 3d │ │ │ │ ├── index.d.ts │ │ │ │ ├── pie-3d-transformer.d.ts │ │ │ │ └── pie-3d.d.ts │ │ │ ├── animation │ │ │ │ ├── animation.d.ts │ │ │ │ └── centerOffset.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── pie-3d.d.ts │ │ │ ├── pie-transformer.d.ts │ │ │ └── pie.d.ts │ │ ├── polar │ │ │ ├── animation.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── polar.d.ts │ │ │ ├── progress-like │ │ │ │ ├── animation.d.ts │ │ │ │ ├── constant.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ └── progress-like.d.ts │ │ │ └── rose-like │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ └── rose-like.d.ts │ │ ├── progress │ │ │ ├── circular │ │ │ │ ├── circular-transformer.d.ts │ │ │ │ ├── circular.d.ts │ │ │ │ ├── constant.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── interface.d.ts │ │ │ └── linear │ │ │ │ ├── animation.d.ts │ │ │ │ ├── constant.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── linear.d.ts │ │ │ │ └── tooltip-helper.d.ts │ │ ├── radar │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ └── radar.d.ts │ │ ├── range-area │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── range-area.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── range-column │ │ │ ├── 3d │ │ │ │ ├── index.d.ts │ │ │ │ ├── range-column-3d-transformer.d.ts │ │ │ │ └── range-column-3d.d.ts │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── range-column-3d.d.ts │ │ │ ├── range-column-transformer.d.ts │ │ │ ├── range-column.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── rose │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── rose-transformer.d.ts │ │ │ └── rose.d.ts │ │ ├── sankey │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── sankey-transformer.d.ts │ │ │ ├── sankey.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── scatter │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── scatter-transformer.d.ts │ │ │ └── scatter.d.ts │ │ ├── sunburst │ │ │ ├── animation │ │ │ │ ├── enter.d.ts │ │ │ │ ├── exit.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── interface.d.ts │ │ │ │ ├── preset.d.ts │ │ │ │ └── utils.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── sunburst.d.ts │ │ │ └── tooltip-helper.d.ts │ │ ├── treemap │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── tooltip-helper.d.ts │ │ │ ├── treemap-transform.d.ts │ │ │ └── treemap.d.ts │ │ ├── util │ │ │ ├── hierarchy.d.ts │ │ │ ├── label-mark.d.ts │ │ │ ├── spec.d.ts │ │ │ ├── stack.d.ts │ │ │ └── utils.d.ts │ │ ├── venn │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── tooltip-helper.d.ts │ │ │ ├── util.d.ts │ │ │ ├── venn-transform.d.ts │ │ │ └── venn.d.ts │ │ ├── waterfall │ │ │ ├── animation.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── waterfall-transformer.d.ts │ │ │ └── waterfall.d.ts │ │ └── word-cloud │ │ │ ├── animation.d.ts │ │ │ ├── base.d.ts │ │ │ ├── config.d.ts │ │ │ ├── constant.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── word-cloud-3d.d.ts │ │ │ └── word-cloud.d.ts │ │ ├── theme │ │ ├── builtin │ │ │ ├── common-mobile │ │ │ │ ├── component │ │ │ │ │ ├── axis │ │ │ │ │ │ ├── band-axis.d.ts │ │ │ │ │ │ ├── cartesian-axis.d.ts │ │ │ │ │ │ ├── common-axis.d.ts │ │ │ │ │ │ ├── linear-axis.d.ts │ │ │ │ │ │ └── polar-axis.d.ts │ │ │ │ │ ├── crosshair.d.ts │ │ │ │ │ ├── data-zoom.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── indicator.d.ts │ │ │ │ │ ├── legend │ │ │ │ │ │ ├── color-legend.d.ts │ │ │ │ │ │ ├── continuous.d.ts │ │ │ │ │ │ ├── discrete-legend.d.ts │ │ │ │ │ │ └── size-legend.d.ts │ │ │ │ │ ├── map-label.d.ts │ │ │ │ │ ├── mark-area.d.ts │ │ │ │ │ ├── mark-line.d.ts │ │ │ │ │ ├── mark-point.d.ts │ │ │ │ │ ├── player.d.ts │ │ │ │ │ ├── poptip.d.ts │ │ │ │ │ ├── title.d.ts │ │ │ │ │ ├── tooltip.d.ts │ │ │ │ │ └── total-label.d.ts │ │ │ │ ├── constants.d.ts │ │ │ │ └── mark.d.ts │ │ │ ├── common │ │ │ │ ├── component │ │ │ │ │ ├── axis │ │ │ │ │ │ ├── band-axis.d.ts │ │ │ │ │ │ ├── cartesian-axis.d.ts │ │ │ │ │ │ ├── common-axis.d.ts │ │ │ │ │ │ ├── linear-axis.d.ts │ │ │ │ │ │ └── polar-axis.d.ts │ │ │ │ │ ├── brush.d.ts │ │ │ │ │ ├── crosshair.d.ts │ │ │ │ │ ├── data-zoom.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── indicator.d.ts │ │ │ │ │ ├── legend │ │ │ │ │ │ ├── color-legend.d.ts │ │ │ │ │ │ ├── continuous.d.ts │ │ │ │ │ │ ├── discrete-legend.d.ts │ │ │ │ │ │ └── size-legend.d.ts │ │ │ │ │ ├── map-label.d.ts │ │ │ │ │ ├── mark-area.d.ts │ │ │ │ │ ├── mark-line.d.ts │ │ │ │ │ ├── mark-point.d.ts │ │ │ │ │ ├── mark.d.ts │ │ │ │ │ ├── player.d.ts │ │ │ │ │ ├── poptip.d.ts │ │ │ │ │ ├── scroll-bar.d.ts │ │ │ │ │ ├── title.d.ts │ │ │ │ │ ├── tooltip.d.ts │ │ │ │ │ └── total-label.d.ts │ │ │ │ ├── constants.d.ts │ │ │ │ ├── legacy │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── legend │ │ │ │ │ │ ├── color-legend.d.ts │ │ │ │ │ │ ├── continuous.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── size-legend.d.ts │ │ │ │ ├── mark.d.ts │ │ │ │ └── series │ │ │ │ │ ├── area.d.ts │ │ │ │ │ ├── bar.d.ts │ │ │ │ │ ├── bar3d.d.ts │ │ │ │ │ ├── box-plot.d.ts │ │ │ │ │ ├── circle-packing.d.ts │ │ │ │ │ ├── circular-progress.d.ts │ │ │ │ │ ├── correlation.d.ts │ │ │ │ │ ├── dot.d.ts │ │ │ │ │ ├── funnel.d.ts │ │ │ │ │ ├── funnel3d.d.ts │ │ │ │ │ ├── gauge-pointer.d.ts │ │ │ │ │ ├── gauge.d.ts │ │ │ │ │ ├── heatmap.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── line.d.ts │ │ │ │ │ ├── linear-progress.d.ts │ │ │ │ │ ├── link.d.ts │ │ │ │ │ ├── liquid.d.ts │ │ │ │ │ ├── map.d.ts │ │ │ │ │ ├── mosaic.d.ts │ │ │ │ │ ├── pie.d.ts │ │ │ │ │ ├── pie3d.d.ts │ │ │ │ │ ├── radar.d.ts │ │ │ │ │ ├── rangeColumn.d.ts │ │ │ │ │ ├── rose.d.ts │ │ │ │ │ ├── sankey.d.ts │ │ │ │ │ ├── scatter.d.ts │ │ │ │ │ ├── sunburst.d.ts │ │ │ │ │ ├── treemap.d.ts │ │ │ │ │ ├── venn.d.ts │ │ │ │ │ ├── waterfall.d.ts │ │ │ │ │ ├── word-cloud.d.ts │ │ │ │ │ └── word-cloud3d.d.ts │ │ │ ├── dark-mobile │ │ │ │ └── index.d.ts │ │ │ ├── dark │ │ │ │ ├── color-scheme.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── index.d.ts │ │ │ ├── light-mobile │ │ │ │ └── index.d.ts │ │ │ └── light │ │ │ │ ├── color-scheme.d.ts │ │ │ │ └── index.d.ts │ │ ├── color-scheme │ │ │ ├── builtin │ │ │ │ ├── default.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ ├── legacy.d.ts │ │ │ └── util.d.ts │ │ ├── index.d.ts │ │ ├── interface.d.ts │ │ ├── theme-manager.d.ts │ │ ├── token │ │ │ ├── builtin │ │ │ │ ├── default.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── interface.d.ts │ │ │ ├── index.d.ts │ │ │ ├── interface.d.ts │ │ │ └── util.d.ts │ │ └── util.d.ts │ │ ├── typings │ │ ├── common.d.ts │ │ ├── coordinate.d.ts │ │ ├── cursor.d.ts │ │ ├── data.d.ts │ │ ├── event.d.ts │ │ ├── geo.d.ts │ │ ├── group.d.ts │ │ ├── index.d.ts │ │ ├── interpolate.d.ts │ │ ├── layout.d.ts │ │ ├── line-stroke.d.ts │ │ ├── params.d.ts │ │ ├── scale.d.ts │ │ ├── shape.d.ts │ │ ├── space.d.ts │ │ ├── spec │ │ │ ├── chart.d.ts │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ └── media-query.d.ts │ │ ├── tooltip │ │ │ ├── common.d.ts │ │ │ ├── handler.d.ts │ │ │ ├── index.d.ts │ │ │ ├── label.d.ts │ │ │ ├── line.d.ts │ │ │ ├── position.d.ts │ │ │ ├── shape.d.ts │ │ │ └── tooltip.d.ts │ │ └── visual.d.ts │ │ ├── util │ │ ├── array.d.ts │ │ ├── color.d.ts │ │ ├── data.d.ts │ │ ├── debug.d.ts │ │ ├── env.d.ts │ │ ├── hierarchy.d.ts │ │ ├── id.d.ts │ │ ├── image.d.ts │ │ ├── index.d.ts │ │ ├── mark.d.ts │ │ ├── math.d.ts │ │ ├── model.d.ts │ │ ├── object.d.ts │ │ ├── region.d.ts │ │ ├── scale.d.ts │ │ ├── space.d.ts │ │ ├── spec │ │ │ ├── background.d.ts │ │ │ ├── clone-deep.d.ts │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ ├── merge-spec.d.ts │ │ │ ├── merge-theme.d.ts │ │ │ ├── preprocess.d.ts │ │ │ └── transform.d.ts │ │ ├── style.d.ts │ │ ├── text.d.ts │ │ ├── theme │ │ │ ├── common.d.ts │ │ │ ├── index.d.ts │ │ │ ├── merge-theme.d.ts │ │ │ └── preprocess.d.ts │ │ └── type.d.ts │ │ ├── vchart-all.d.ts │ │ ├── vchart-empty.d.ts │ │ ├── vchart-pie.d.ts │ │ ├── vchart-simple.d.ts │ │ └── vrender-tools.d.ts ├── vchart │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .size-limit.json │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── data │ │ │ ├── data-sequence-comment.ts │ │ │ ├── data-sequence-event-dot.ts │ │ │ ├── data-sequence-event-link.ts │ │ │ ├── data-sequence-im.ts │ │ │ ├── data-wordcloud-shape.ts │ │ │ ├── data-wordcloud.ts │ │ │ └── disk.ts │ │ ├── runtime │ │ │ ├── browser │ │ │ │ ├── dashboard │ │ │ │ │ ├── chart1.ts │ │ │ │ │ ├── chart2.ts │ │ │ │ │ ├── chart3.ts │ │ │ │ │ ├── chart4.ts │ │ │ │ │ ├── chart5.ts │ │ │ │ │ └── chart6.ts │ │ │ │ ├── index.html │ │ │ │ ├── index.page.dashboard.ts │ │ │ │ ├── index.page.ts │ │ │ │ ├── scripts │ │ │ │ │ ├── index.page.local.template.ts │ │ │ │ │ ├── initVite.ts │ │ │ │ │ └── vite.config.local.template.ts │ │ │ │ ├── sources │ │ │ │ │ ├── README.md │ │ │ │ │ ├── motor.png │ │ │ │ │ ├── motor2.png │ │ │ │ │ ├── noodles.png │ │ │ │ │ ├── screenshot-20230331-024903.png │ │ │ │ │ ├── shape.png │ │ │ │ │ ├── shape_bears.png │ │ │ │ │ ├── shape_bears2.png │ │ │ │ │ ├── shape_dolphin.png │ │ │ │ │ ├── shape_logo.png │ │ │ │ │ ├── shape_man2.png │ │ │ │ │ ├── shape_man4.png │ │ │ │ │ ├── shape_moustache.png │ │ │ │ │ ├── shape_recycle.png │ │ │ │ │ ├── shape_test2.png │ │ │ │ │ └── shape_tie.png │ │ │ │ ├── test-page │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── animation-area.ts │ │ │ │ │ ├── animation-bar.ts │ │ │ │ │ ├── animation-dynamic-bar.ts │ │ │ │ │ ├── animation-line.ts │ │ │ │ │ ├── animation-performance.ts │ │ │ │ │ ├── animation-pie.ts │ │ │ │ │ ├── animation-scatter.ts │ │ │ │ │ ├── area-h.ts │ │ │ │ │ ├── area.ts │ │ │ │ │ ├── axis-label-layout.ts │ │ │ │ │ ├── bar.ts │ │ │ │ │ ├── brush-summary.ts │ │ │ │ │ ├── brush.ts │ │ │ │ │ ├── circular-progress.ts │ │ │ │ │ ├── correlation.ts │ │ │ │ │ ├── custom-tooltip-handler.ts │ │ │ │ │ ├── data-zoom-big-data.ts │ │ │ │ │ ├── data-zoom-brush-bar.ts │ │ │ │ │ ├── data-zoom-brush-line.ts │ │ │ │ │ ├── data-zoom-brush-scatter.ts │ │ │ │ │ ├── data │ │ │ │ │ │ ├── datazoom-big-data.json │ │ │ │ │ │ ├── line-big-data.json │ │ │ │ │ │ ├── order-count-data.json │ │ │ │ │ │ ├── profit-count-data.json │ │ │ │ │ │ └── scatter-data-population.json │ │ │ │ │ ├── datazoom.ts │ │ │ │ │ ├── debug.ts │ │ │ │ │ ├── formatter.ts │ │ │ │ │ ├── gauge-legend.ts │ │ │ │ │ ├── gauge-progress.ts │ │ │ │ │ ├── gauge-segment.ts │ │ │ │ │ ├── group.ts │ │ │ │ │ ├── histogram.ts │ │ │ │ │ ├── image-cloud.ts │ │ │ │ │ ├── import-bar.ts │ │ │ │ │ ├── label-smartInvert.ts │ │ │ │ │ ├── label.ts │ │ │ │ │ ├── linear-progress.ts │ │ │ │ │ ├── liquid.ts │ │ │ │ │ ├── log-axis.ts │ │ │ │ │ ├── marker-richtext.ts │ │ │ │ │ ├── markline.ts │ │ │ │ │ ├── morph-animate.ts │ │ │ │ │ ├── multiple-legend-layout.ts │ │ │ │ │ ├── performance-line-2.ts │ │ │ │ │ ├── performance-line.ts │ │ │ │ │ ├── pictogram_bagua_demo.ts │ │ │ │ │ ├── pie-label.ts │ │ │ │ │ ├── pie.ts │ │ │ │ │ ├── radar.ts │ │ │ │ │ ├── range-column.ts │ │ │ │ │ ├── rose.ts │ │ │ │ │ ├── sankey-2.ts │ │ │ │ │ ├── sankey-3.ts │ │ │ │ │ ├── sankey.ts │ │ │ │ │ ├── scatter-2.ts │ │ │ │ │ ├── scatter-player.ts │ │ │ │ │ ├── scatter.ts │ │ │ │ │ ├── scrollbar.ts │ │ │ │ │ ├── sequence-2.ts │ │ │ │ │ ├── sequence.ts │ │ │ │ │ ├── step-mark-line.ts │ │ │ │ │ ├── switch-theme.ts │ │ │ │ │ ├── tooltip.ts │ │ │ │ │ ├── vchart-simple.ts │ │ │ │ │ ├── venn.ts │ │ │ │ │ ├── vscreen-performance.ts │ │ │ │ │ ├── vtable-cell.ts │ │ │ │ │ ├── waterfall.ts │ │ │ │ │ ├── word-cloud-shape.ts │ │ │ │ │ ├── word-cloud.ts │ │ │ │ │ └── zuma.ts │ │ │ │ └── vite.config.js │ │ │ └── node │ │ │ │ ├── china-map.js │ │ │ │ ├── line-chart.js │ │ │ │ └── wordcloud.js │ │ ├── unit │ │ │ ├── README.md │ │ │ ├── chart │ │ │ │ ├── bar.test.ts │ │ │ │ ├── histogram.test.ts │ │ │ │ ├── line.test.ts │ │ │ │ ├── linearProgress.test.ts │ │ │ │ ├── rangeColumn.test.ts │ │ │ │ ├── treemap.test.ts │ │ │ │ └── word-cloud.test.ts │ │ │ ├── compile │ │ │ │ └── sirius │ │ │ │ │ └── series │ │ │ │ │ └── base.test.ts │ │ │ ├── component │ │ │ │ └── cartesian │ │ │ │ │ └── axis │ │ │ │ │ ├── axis-sync-break.test.ts │ │ │ │ │ ├── inner-offset.test.ts │ │ │ │ │ ├── linear-axis.test.ts │ │ │ │ │ └── util │ │ │ │ │ └── break-data.test.ts │ │ │ ├── core │ │ │ │ ├── update-spec.test.ts │ │ │ │ ├── vchart-event.test.ts │ │ │ │ └── vchart.test.ts │ │ │ ├── data │ │ │ │ ├── fields.test.ts │ │ │ │ ├── hierarchy.test.ts │ │ │ │ └── stack-split.test.ts │ │ │ ├── event │ │ │ │ └── event.test.ts │ │ │ ├── function │ │ │ │ ├── formatter.test.ts │ │ │ │ └── register-function.test.ts │ │ │ ├── layout │ │ │ │ └── index.test.ts │ │ │ ├── mark │ │ │ │ ├── line.test.ts │ │ │ │ ├── rule.test.ts │ │ │ │ ├── symbol.test.ts │ │ │ │ └── text.test.ts │ │ │ ├── morph │ │ │ │ └── morph.test.ts │ │ │ ├── scale │ │ │ │ ├── global-scale.test.ts │ │ │ │ └── linear.test.ts │ │ │ ├── series │ │ │ │ ├── funnel.test.ts │ │ │ │ ├── line.test.ts │ │ │ │ ├── linearProgres.test.ts │ │ │ │ ├── rangeColumn.test.ts │ │ │ │ └── word-cloud.test.ts │ │ │ └── theme │ │ │ │ └── line.test.ts │ │ └── util │ │ │ ├── context.ts │ │ │ ├── dom.ts │ │ │ ├── factory │ │ │ ├── chart.ts │ │ │ ├── compiler.ts │ │ │ ├── region.ts │ │ │ ├── series.ts │ │ │ └── stage.ts │ │ │ └── vscreen-pipe.ts │ ├── bundler.config.js │ ├── dist │ │ ├── .gitkeep │ │ └── index-wx-simple.min.js │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── setup-mock.js │ ├── src │ │ ├── animation │ │ │ ├── animation-planner.ts │ │ │ ├── config.ts │ │ │ ├── grammar-dector.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── sequential-animate.ts │ │ │ ├── spec.ts │ │ │ ├── state-transition.ts │ │ │ ├── strategy │ │ │ │ ├── common.ts │ │ │ │ ├── horizontal-bar-split.ts │ │ │ │ └── vertical-bar-split.ts │ │ │ └── utils.ts │ │ ├── chart │ │ │ ├── area │ │ │ │ ├── area-transformer.ts │ │ │ │ ├── area.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── bar │ │ │ │ ├── bar-transformer.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── base │ │ │ │ ├── base-chart-transformer.ts │ │ │ │ ├── base-chart.ts │ │ │ │ ├── index.ts │ │ │ │ └── util.ts │ │ │ ├── box-plot │ │ │ │ ├── box-plot-transformer.ts │ │ │ │ ├── box-plot.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── cartesian │ │ │ │ ├── cartesian-transformer.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── chart-meta │ │ │ │ └── data.ts │ │ │ ├── circle-packing │ │ │ │ ├── circle-packing-transformer.ts │ │ │ │ ├── circle-packing.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── common │ │ │ │ ├── common-transformer.ts │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── correlation │ │ │ │ ├── correlation-transformer.ts │ │ │ │ ├── correlation.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── funnel │ │ │ │ ├── funnel-transformer.ts │ │ │ │ ├── funnel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ │ ├── gauge │ │ │ │ ├── gauge-transformer.ts │ │ │ │ ├── gauge.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── heatmap │ │ │ │ ├── heatmap-transformer.ts │ │ │ │ ├── heatmap.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── histogram │ │ │ │ ├── base │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── histogram-base-transformer.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── histogram-transformer.ts │ │ │ │ ├── histogram.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── index.ts │ │ │ ├── interface │ │ │ │ ├── chart.ts │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── line │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── line-transformer.ts │ │ │ │ └── line.ts │ │ │ ├── liquid │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── liquid-transformer.ts │ │ │ │ └── liquid.ts │ │ │ ├── map │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── map-transformer.ts │ │ │ │ └── map.ts │ │ │ ├── mosaic │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── mosaic-transformer.ts │ │ │ │ └── mosaic.ts │ │ │ ├── pie │ │ │ │ ├── base │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pie-transformer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── pie.ts │ │ │ ├── polar │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── polar-transformer.ts │ │ │ │ ├── progress-like │ │ │ │ │ ├── index.ts │ │ │ │ │ └── progress-like-transformer.ts │ │ │ │ └── rose-like │ │ │ │ │ ├── index.ts │ │ │ │ │ └── rose-like-transformer.ts │ │ │ ├── progress │ │ │ │ ├── circular │ │ │ │ │ ├── circular-progress-transformer.ts │ │ │ │ │ ├── circular.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── interface.ts │ │ │ │ └── linear │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── linear-progress-transformer.ts │ │ │ │ │ └── linear.ts │ │ │ ├── radar │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── radar-transformer.ts │ │ │ │ └── radar.ts │ │ │ ├── range-area │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── range-area-transformer.ts │ │ │ │ └── range-area.ts │ │ │ ├── range-column │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── range-column-transformer.ts │ │ │ │ └── range-column.ts │ │ │ ├── rose │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── rose-transformer.ts │ │ │ │ └── rose.ts │ │ │ ├── sankey │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sankey-transformer.ts │ │ │ │ └── sankey.ts │ │ │ ├── scatter │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── scatter-transformer.ts │ │ │ │ └── scatter.ts │ │ │ ├── sequence │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sequence-transformer.ts │ │ │ │ └── sequence.ts │ │ │ ├── stack.ts │ │ │ ├── sunburst │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sunburst-transformer.ts │ │ │ │ └── sunburst.ts │ │ │ ├── treemap │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── treemap-transformer.ts │ │ │ │ └── treemap.ts │ │ │ ├── util.ts │ │ │ ├── venn │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── venn-transformer.ts │ │ │ │ └── venn.ts │ │ │ ├── waterfall │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── waterfall-transformer.ts │ │ │ │ └── waterfall.ts │ │ │ └── word-cloud │ │ │ │ ├── base │ │ │ │ ├── base.ts │ │ │ │ ├── index.ts │ │ │ │ └── word-cloud-base-transformer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── word-cloud.ts │ │ ├── compile │ │ │ ├── compilable-base.ts │ │ │ ├── compiler.ts │ │ │ ├── data │ │ │ │ ├── compilable-data.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── grammar-item.ts │ │ │ ├── interface │ │ │ │ ├── compilable-item.ts │ │ │ │ ├── compiler.ts │ │ │ │ └── index.ts │ │ │ ├── mark │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── mark-state-manager.ts │ │ │ │ └── util.ts │ │ │ ├── morph.ts │ │ │ ├── state-manager.ts │ │ │ └── util.ts │ │ ├── component │ │ │ ├── axis │ │ │ │ ├── base-axis.ts │ │ │ │ ├── cartesian │ │ │ │ │ ├── axis.ts │ │ │ │ │ ├── band-axis.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spec.ts │ │ │ │ │ │ └── theme.ts │ │ │ │ │ ├── linear-axis.ts │ │ │ │ │ ├── log-axis.ts │ │ │ │ │ ├── symlog-axis.ts │ │ │ │ │ ├── time-axis.ts │ │ │ │ │ └── util │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── mixin │ │ │ │ │ ├── band-axis-mixin.ts │ │ │ │ │ ├── linear-axis-mixin.ts │ │ │ │ │ └── util │ │ │ │ │ │ └── break-data.ts │ │ │ │ ├── polar │ │ │ │ │ ├── axis.ts │ │ │ │ │ ├── band-axis.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spec.ts │ │ │ │ │ │ └── theme.ts │ │ │ │ │ ├── linear-axis.ts │ │ │ │ │ └── util │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── util.ts │ │ │ ├── base │ │ │ │ ├── base-component-transformer.ts │ │ │ │ ├── base-component.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ │ ├── brush │ │ │ │ ├── brush.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── common │ │ │ │ └── trigger │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── desktop.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── mobile.ts │ │ │ ├── crosshair │ │ │ │ ├── base.ts │ │ │ │ ├── cartesian.ts │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── polar.ts │ │ │ │ └── utils │ │ │ │ │ ├── cartesian.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── polar.ts │ │ │ ├── custom-mark │ │ │ │ ├── custom-mark.ts │ │ │ │ └── index.ts │ │ │ ├── data-zoom │ │ │ │ ├── data-filter-base-component.ts │ │ │ │ ├── data-filter-event.ts │ │ │ │ ├── data-zoom │ │ │ │ │ ├── data-zoom-transformer.ts │ │ │ │ │ ├── data-zoom.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── scroll-bar │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── scroll-bar.ts │ │ │ │ └── util.ts │ │ │ ├── geo │ │ │ │ ├── geo-coordinate.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── projection.ts │ │ │ ├── index.ts │ │ │ ├── indicator │ │ │ │ ├── index.ts │ │ │ │ ├── indicator.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ │ ├── interface │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── theme.ts │ │ │ │ └── type.ts │ │ │ ├── label │ │ │ │ ├── base-label.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── label-transformer.ts │ │ │ │ ├── label.ts │ │ │ │ ├── total-label.ts │ │ │ │ └── util.ts │ │ │ ├── legend │ │ │ │ ├── base-legend.ts │ │ │ │ ├── continuous │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── legend.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── discrete │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── legend.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ │ ├── marker │ │ │ │ ├── base-marker.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── mark-area │ │ │ │ │ ├── base-mark-area.ts │ │ │ │ │ ├── cartesian-mark-area.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spec.ts │ │ │ │ │ │ └── theme.ts │ │ │ │ │ └── polar-mark-area.ts │ │ │ │ ├── mark-line │ │ │ │ │ ├── base-mark-line.ts │ │ │ │ │ ├── cartesian-mark-line.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spec.ts │ │ │ │ │ │ └── theme.ts │ │ │ │ │ ├── polar-mark-line.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── mark-point │ │ │ │ │ ├── base-mark-point.ts │ │ │ │ │ ├── cartesian-mark-point.ts │ │ │ │ │ ├── geo-mark-point.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spec.ts │ │ │ │ │ │ └── theme.ts │ │ │ │ │ └── polar-mark-point.ts │ │ │ │ └── utils.ts │ │ │ ├── player │ │ │ │ ├── index.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── player.ts │ │ │ │ └── utils │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── orient.ts │ │ │ │ │ └── transform.ts │ │ │ ├── poptip │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── title │ │ │ │ ├── index.ts │ │ │ │ ├── interface │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── title.ts │ │ │ │ └── utils.ts │ │ │ ├── tooltip │ │ │ │ ├── constant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── event.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── processor │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── dimension-tooltip.ts │ │ │ │ │ ├── group-tooltip.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── mark-tooltip.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── tooltip-transformer.ts │ │ │ │ ├── tooltip.ts │ │ │ │ └── utils │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── get-spec.ts │ │ │ │ │ ├── get-value.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── show-tooltip.ts │ │ │ └── util.ts │ │ ├── constant │ │ │ ├── attribute.ts │ │ │ ├── base.ts │ │ │ ├── box-plot.ts │ │ │ ├── correlation.ts │ │ │ ├── data.ts │ │ │ ├── event.ts │ │ │ ├── funnel.ts │ │ │ ├── gradient.ts │ │ │ ├── hierarchy.ts │ │ │ ├── label.ts │ │ │ ├── layout.ts │ │ │ ├── marker.ts │ │ │ ├── polar.ts │ │ │ ├── scatter.ts │ │ │ ├── scroll-bar.ts │ │ │ ├── sunburst.ts │ │ │ ├── waterfall.ts │ │ │ └── word-cloud.ts │ │ ├── core │ │ │ ├── expression-function.ts │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── instance-manager.ts │ │ │ ├── interface.ts │ │ │ ├── util.ts │ │ │ └── vchart.ts │ │ ├── data │ │ │ ├── initialize.ts │ │ │ ├── parser │ │ │ │ ├── array.ts │ │ │ │ └── scale.ts │ │ │ ├── register.ts │ │ │ └── transforms │ │ │ │ ├── add-property.ts │ │ │ │ ├── aggregation.ts │ │ │ │ ├── box-plot.ts │ │ │ │ ├── circle-packing.ts │ │ │ │ ├── copy-data-view.ts │ │ │ │ ├── correlation-center.ts │ │ │ │ ├── correlation.ts │ │ │ │ ├── data-key.ts │ │ │ │ ├── dimension-data.ts │ │ │ │ ├── dimension-statistics.ts │ │ │ │ ├── drill.ts │ │ │ │ ├── flatten.ts │ │ │ │ ├── funnel.ts │ │ │ │ ├── hierarchy-dimension-statistics.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── invalid-travel.ts │ │ │ │ ├── legend-data │ │ │ │ ├── continuous │ │ │ │ │ ├── continuous.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ └── discrete │ │ │ │ │ ├── discrete.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── link-dot-info.ts │ │ │ │ ├── lookup.ts │ │ │ │ ├── map.ts │ │ │ │ ├── marker-filter.ts │ │ │ │ ├── obj-flat.ts │ │ │ │ ├── pictogram.ts │ │ │ │ ├── pie.ts │ │ │ │ ├── regression.ts │ │ │ │ ├── sankey-links.ts │ │ │ │ ├── sankey-nodes.ts │ │ │ │ ├── sankey.ts │ │ │ │ ├── stack-split.ts │ │ │ │ ├── sunburst.ts │ │ │ │ ├── treemap.ts │ │ │ │ ├── venn.ts │ │ │ │ └── waterfall.ts │ │ ├── env │ │ │ ├── env.ts │ │ │ └── index.ts │ │ ├── event │ │ │ ├── bubble.ts │ │ │ ├── event-dispatcher.ts │ │ │ ├── event.ts │ │ │ ├── events │ │ │ │ ├── base.ts │ │ │ │ ├── dimension │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── dimension-click.ts │ │ │ │ │ ├── dimension-hover.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── util │ │ │ │ │ │ ├── cartesian.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── polar.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── interface.ts │ │ ├── global.d.ts │ │ ├── index-harmony-mini.ts │ │ ├── index-harmony-simple.ts │ │ ├── index-harmony.ts │ │ ├── index-lark.ts │ │ ├── index-wx-simple.ts │ │ ├── index-wx.ts │ │ ├── index.ts │ │ ├── interaction │ │ │ ├── config.ts │ │ │ ├── drill │ │ │ │ ├── drillable.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── interaction.ts │ │ │ ├── interface │ │ │ │ ├── common.ts │ │ │ │ ├── spec.ts │ │ │ │ └── trigger.ts │ │ │ ├── triggers │ │ │ │ ├── base.ts │ │ │ │ ├── dimension-hover.ts │ │ │ │ ├── element-active-by-legend.ts │ │ │ │ ├── element-active.ts │ │ │ │ ├── element-highlight-by-group.ts │ │ │ │ ├── element-highlight-by-key.ts │ │ │ │ ├── element-highlight-by-legend.ts │ │ │ │ ├── element-highlight-by-name.ts │ │ │ │ ├── element-highlight.ts │ │ │ │ ├── element-select.ts │ │ │ │ ├── enum.ts │ │ │ │ └── util.ts │ │ │ └── zoom │ │ │ │ ├── index.ts │ │ │ │ └── zoomable.ts │ │ ├── layout │ │ │ ├── base-layout.ts │ │ │ ├── grid-layout │ │ │ │ └── grid-layout.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── layout-item.ts │ │ │ └── util.ts │ │ ├── mark │ │ │ ├── arc.ts │ │ │ ├── area.ts │ │ │ ├── base │ │ │ │ ├── base-line.ts │ │ │ │ ├── base-mark.ts │ │ │ │ └── index.ts │ │ │ ├── box-plot.ts │ │ │ ├── cell.ts │ │ │ ├── component.ts │ │ │ ├── glyph.ts │ │ │ ├── group.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── interface │ │ │ │ ├── common.ts │ │ │ │ ├── enum.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mark.ts │ │ │ │ └── type.ts │ │ │ ├── label.ts │ │ │ ├── line.ts │ │ │ ├── link-path.ts │ │ │ ├── liquid.ts │ │ │ ├── mark-set │ │ │ │ └── index.ts │ │ │ ├── path.ts │ │ │ ├── polygon │ │ │ │ ├── base-polygon.ts │ │ │ │ └── polygon.ts │ │ │ ├── rect.ts │ │ │ ├── ripple.ts │ │ │ ├── rule.ts │ │ │ ├── symbol.ts │ │ │ ├── text.ts │ │ │ ├── transform │ │ │ │ ├── data-sampling.ts │ │ │ │ ├── filter.ts │ │ │ │ ├── map.ts │ │ │ │ └── symbol-overlap.ts │ │ │ └── utils │ │ │ │ ├── common.ts │ │ │ │ ├── glyph.ts │ │ │ │ ├── index.ts │ │ │ │ └── line.ts │ │ ├── model │ │ │ ├── base-model-transformer.ts │ │ │ ├── base-model.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── layout-model.ts │ │ ├── plugin │ │ │ ├── base │ │ │ │ ├── base-plugin-service.ts │ │ │ │ ├── base-plugin.ts │ │ │ │ └── interface.ts │ │ │ ├── chart │ │ │ │ ├── formatter │ │ │ │ │ ├── formatter.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── media-query │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── media-query.ts │ │ │ │ │ └── util │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── query.ts │ │ │ │ ├── plugin-service.ts │ │ │ │ ├── register.ts │ │ │ │ └── resize-zoom │ │ │ │ │ ├── index.ts │ │ │ │ │ └── zoom.ts │ │ │ ├── components │ │ │ │ ├── axis-sync │ │ │ │ │ ├── axis-sync.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── tick-align-transform.ts │ │ │ │ │ └── zero-align-transform.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── plugin-service.ts │ │ │ │ ├── register.ts │ │ │ │ └── tooltip-handler │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── canvas-tooltip-handler.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── dom-tooltip-handler.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── attribute.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── position.ts │ │ │ │ │ ├── style.ts │ │ │ │ │ └── svg.ts │ │ │ ├── interface.ts │ │ │ ├── other.ts │ │ │ ├── series │ │ │ │ └── interface.ts │ │ │ └── vchart │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── plugin-service.ts │ │ │ │ ├── register.ts │ │ │ │ └── rotate │ │ │ │ ├── index.ts │ │ │ │ └── rotate.ts │ │ ├── region │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── region-transformer.ts │ │ │ └── region.ts │ │ ├── scale │ │ │ ├── color-ordinal-scale.ts │ │ │ ├── global-scale.ts │ │ │ └── interface.ts │ │ ├── series │ │ │ ├── area │ │ │ │ ├── animation.ts │ │ │ │ ├── area-transformer.ts │ │ │ │ ├── area.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helpter.ts │ │ │ ├── bar │ │ │ │ ├── animation.ts │ │ │ │ ├── bar-transformer.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── constant.ts │ │ │ │ └── interface.ts │ │ │ ├── base │ │ │ │ ├── base-series-transformer.ts │ │ │ │ ├── base-series.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── group.ts │ │ │ │ ├── index.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── box-plot │ │ │ │ ├── animation.ts │ │ │ │ ├── box-plot.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── cartesian │ │ │ │ ├── cartesian.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── circle-packing │ │ │ │ ├── animation.ts │ │ │ │ ├── circle-packing.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── correlation │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── correlation-transformer.ts │ │ │ │ ├── correlation.ts │ │ │ │ └── interface.ts │ │ │ ├── dot │ │ │ │ ├── config.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── dot.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── funnel │ │ │ │ ├── constant.ts │ │ │ │ ├── funnel-transformer.ts │ │ │ │ ├── funnel.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── gauge │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── gauge-pointer-transformer.ts │ │ │ │ ├── gauge-pointer.ts │ │ │ │ ├── gauge-transformer.ts │ │ │ │ ├── gauge.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── pointer-tooltip-helper.ts │ │ │ ├── geo │ │ │ │ ├── geo.ts │ │ │ │ └── interface.ts │ │ │ ├── heatmap │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── heatmap-transformer.ts │ │ │ │ ├── heatmap.ts │ │ │ │ ├── interface.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── index.ts │ │ │ ├── interface │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── series.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── tooltip-helper.ts │ │ │ │ └── type.ts │ │ │ ├── line │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── line.ts │ │ │ ├── link │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── link.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── liquid │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── liquid.ts │ │ │ │ ├── tooltip-helper.ts │ │ │ │ └── util.ts │ │ │ ├── map │ │ │ │ ├── constant.ts │ │ │ │ ├── geo-source.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── map-transformer.ts │ │ │ │ ├── map.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── mixin │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── line-mixin-transformer.ts │ │ │ │ └── line-mixin.ts │ │ │ ├── mosaic │ │ │ │ ├── interface.ts │ │ │ │ └── mosaic.ts │ │ │ ├── pie │ │ │ │ ├── animation │ │ │ │ │ ├── animation.ts │ │ │ │ │ └── centerOffset.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── pie-transformer.ts │ │ │ │ └── pie.ts │ │ │ ├── polar │ │ │ │ ├── animation.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── polar.ts │ │ │ │ ├── progress-like │ │ │ │ │ ├── animation.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── progress-like.ts │ │ │ │ └── rose-like │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ └── rose-like.ts │ │ │ ├── progress │ │ │ │ ├── circular │ │ │ │ │ ├── circular-transformer.ts │ │ │ │ │ ├── circular.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── interface.ts │ │ │ │ └── linear │ │ │ │ │ ├── animation.ts │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── linear.ts │ │ │ │ │ └── tooltip-helper.ts │ │ │ ├── radar │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── radar.ts │ │ │ ├── range-area │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── range-area.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── range-column │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── range-column-transformer.ts │ │ │ │ ├── range-column.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── rose │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── rose-transformer.ts │ │ │ │ └── rose.ts │ │ │ ├── sankey │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sankey-transformer.ts │ │ │ │ ├── sankey.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── scatter │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── scatter-transformer.ts │ │ │ │ └── scatter.ts │ │ │ ├── sunburst │ │ │ │ ├── animation │ │ │ │ │ ├── enter.ts │ │ │ │ │ ├── exit.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── preset.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── sunburst.ts │ │ │ │ └── tooltip-helper.ts │ │ │ ├── treemap │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── tooltip-helper.ts │ │ │ │ ├── treemap-transform.ts │ │ │ │ └── treemap.ts │ │ │ ├── util │ │ │ │ ├── hierarchy.ts │ │ │ │ ├── label-mark.ts │ │ │ │ ├── spec.ts │ │ │ │ ├── stack.ts │ │ │ │ └── utils.ts │ │ │ ├── venn │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── tooltip-helper.ts │ │ │ │ ├── util.ts │ │ │ │ ├── venn-transform.ts │ │ │ │ └── venn.ts │ │ │ ├── waterfall │ │ │ │ ├── animation.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── waterfall-transformer.ts │ │ │ │ └── waterfall.ts │ │ │ └── word-cloud │ │ │ │ ├── animation.ts │ │ │ │ ├── base.ts │ │ │ │ ├── config.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── interface.ts │ │ │ │ └── word-cloud.ts │ │ ├── theme │ │ │ ├── builtin │ │ │ │ ├── common │ │ │ │ │ ├── component │ │ │ │ │ │ ├── axis │ │ │ │ │ │ │ ├── band-axis.ts │ │ │ │ │ │ │ ├── cartesian-axis.ts │ │ │ │ │ │ │ ├── common-axis.ts │ │ │ │ │ │ │ ├── linear-axis.ts │ │ │ │ │ │ │ └── polar-axis.ts │ │ │ │ │ │ ├── brush.ts │ │ │ │ │ │ ├── crosshair.ts │ │ │ │ │ │ ├── data-zoom.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── indicator.ts │ │ │ │ │ │ ├── legend │ │ │ │ │ │ │ ├── color-legend.ts │ │ │ │ │ │ │ ├── continuous.ts │ │ │ │ │ │ │ ├── discrete-legend.ts │ │ │ │ │ │ │ └── size-legend.ts │ │ │ │ │ │ ├── mark-area.ts │ │ │ │ │ │ ├── mark-line.ts │ │ │ │ │ │ ├── mark-point.ts │ │ │ │ │ │ ├── mark.ts │ │ │ │ │ │ ├── player.ts │ │ │ │ │ │ ├── poptip.ts │ │ │ │ │ │ ├── scroll-bar.ts │ │ │ │ │ │ ├── title.ts │ │ │ │ │ │ ├── tooltip.ts │ │ │ │ │ │ └── total-label.ts │ │ │ │ │ ├── mark.ts │ │ │ │ │ └── series │ │ │ │ │ │ ├── area.ts │ │ │ │ │ │ ├── bar.ts │ │ │ │ │ │ ├── box-plot.ts │ │ │ │ │ │ ├── circle-packing.ts │ │ │ │ │ │ ├── circular-progress.ts │ │ │ │ │ │ ├── correlation.ts │ │ │ │ │ │ ├── dot.ts │ │ │ │ │ │ ├── funnel.ts │ │ │ │ │ │ ├── gauge-pointer.ts │ │ │ │ │ │ ├── gauge.ts │ │ │ │ │ │ ├── heatmap.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── line.ts │ │ │ │ │ │ ├── linear-progress.ts │ │ │ │ │ │ ├── link.ts │ │ │ │ │ │ ├── liquid.ts │ │ │ │ │ │ ├── map.ts │ │ │ │ │ │ ├── mosaic.ts │ │ │ │ │ │ ├── pie.ts │ │ │ │ │ │ ├── radar.ts │ │ │ │ │ │ ├── rangeColumn.ts │ │ │ │ │ │ ├── rose.ts │ │ │ │ │ │ ├── sankey.ts │ │ │ │ │ │ ├── scatter.ts │ │ │ │ │ │ ├── sunburst.ts │ │ │ │ │ │ ├── treemap.ts │ │ │ │ │ │ ├── venn.ts │ │ │ │ │ │ ├── waterfall.ts │ │ │ │ │ │ └── word-cloud.ts │ │ │ │ ├── dark │ │ │ │ │ ├── color-scheme.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── light │ │ │ │ │ ├── color-scheme.ts │ │ │ │ │ └── index.ts │ │ │ ├── color-scheme │ │ │ │ ├── builtin │ │ │ │ │ ├── default.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── legacy.ts │ │ │ │ └── util.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── theme-manager.ts │ │ │ └── token │ │ │ │ ├── builtin │ │ │ │ ├── default.ts │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── util.ts │ │ ├── typings │ │ │ ├── common.ts │ │ │ ├── coordinate.ts │ │ │ ├── cursor.ts │ │ │ ├── data.ts │ │ │ ├── event.ts │ │ │ ├── geo.ts │ │ │ ├── group.ts │ │ │ ├── index.ts │ │ │ ├── interpolate.ts │ │ │ ├── layout.ts │ │ │ ├── line-stroke.ts │ │ │ ├── params.ts │ │ │ ├── scale.ts │ │ │ ├── shape.ts │ │ │ ├── space.ts │ │ │ ├── spec │ │ │ │ ├── chart.ts │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── media-query.ts │ │ │ ├── tooltip │ │ │ │ ├── common.ts │ │ │ │ ├── handler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── label.ts │ │ │ │ ├── line.ts │ │ │ │ ├── position.ts │ │ │ │ ├── shape.ts │ │ │ │ └── tooltip.ts │ │ │ └── visual.ts │ │ ├── util │ │ │ ├── array.ts │ │ │ ├── color.ts │ │ │ ├── data.ts │ │ │ ├── debug.ts │ │ │ ├── env.ts │ │ │ ├── hierarchy.ts │ │ │ ├── id.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── mark.ts │ │ │ ├── math.ts │ │ │ ├── model.ts │ │ │ ├── object.ts │ │ │ ├── region.ts │ │ │ ├── scale.ts │ │ │ ├── space.ts │ │ │ ├── spec │ │ │ │ ├── index.ts │ │ │ │ └── transform.ts │ │ │ ├── style.ts │ │ │ ├── text.ts │ │ │ ├── theme │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── merge-theme.ts │ │ │ │ └── preprocess.ts │ │ │ └── type.ts │ │ ├── vchart-all.ts │ │ ├── vchart-empty.ts │ │ ├── vchart-pie.ts │ │ ├── vchart-simple.ts │ │ └── vrender-tools.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tsconfig.test.json ├── vutils-extension │ ├── .eslintignore │ ├── .eslintrc.js │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── index.test.ts │ ├── bundler.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── spec │ │ │ ├── clone-deep.ts │ │ │ ├── index.ts │ │ │ └── merge-spec.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ └── object.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── tsconfig.test.json └── wx-vchart │ ├── .eslintrc.js │ ├── README.md │ ├── index.wxml │ ├── index.wxss │ ├── miniprogram │ ├── app.json │ ├── app.ts │ ├── app.wxss │ ├── pages │ │ ├── gallery │ │ │ ├── chart │ │ │ │ ├── index.json │ │ │ │ ├── index.ts │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── data │ │ │ │ ├── area.js │ │ │ │ ├── bar.js │ │ │ │ ├── boxplot.js │ │ │ │ ├── dual-axis.js │ │ │ │ ├── funnel.js │ │ │ │ ├── horizontal-bar.js │ │ │ │ ├── line.js │ │ │ │ ├── pie.js │ │ │ │ ├── radar.js │ │ │ │ ├── ring.js │ │ │ │ ├── rose.js │ │ │ │ ├── sankey.js │ │ │ │ ├── scatter.js │ │ │ │ └── wordcloud.js │ │ │ └── img │ │ │ │ ├── area.png │ │ │ │ ├── bar.png │ │ │ │ ├── boxplot.png │ │ │ │ ├── contour.png │ │ │ │ ├── custome-tooltip.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── dual-axis.png │ │ │ │ ├── funnel.png │ │ │ │ ├── horizontal-bar.png │ │ │ │ ├── indicator.png │ │ │ │ ├── line.png │ │ │ │ ├── map.png │ │ │ │ ├── pie.png │ │ │ │ ├── pivot-combination.png │ │ │ │ ├── radar.png │ │ │ │ ├── ring.png │ │ │ │ ├── rose.png │ │ │ │ ├── sankey.png │ │ │ │ ├── scatter.png │ │ │ │ └── wordcloud.png │ │ └── index │ │ │ ├── index.json │ │ │ ├── index.ts │ │ │ ├── index.wxml │ │ │ └── index.wxss │ ├── sitemap.json │ ├── src │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── vchart │ │ │ └── index.js │ └── utils │ │ └── util.ts │ ├── package.json │ ├── project.config.json │ ├── project.private.config.json │ ├── rollup.config.ts │ ├── tsconfig.json │ └── typings │ ├── index.d.ts │ └── types │ ├── index.d.ts │ └── wx │ ├── index.d.ts │ ├── lib.wx.api.d.ts │ ├── lib.wx.app.d.ts │ ├── lib.wx.behavior.d.ts │ ├── lib.wx.cloud.d.ts │ ├── lib.wx.component.d.ts │ ├── lib.wx.event.d.ts │ └── lib.wx.page.d.ts ├── pnpm-lock.yaml ├── rush.json ├── share ├── eslint-config │ ├── package.json │ └── profile │ │ ├── common.js │ │ ├── lib.js │ │ └── react.js └── ts-config │ ├── package.json │ └── tsconfig.base.json └── tools ├── bugserver-trigger ├── .eslintignore ├── bundler.config.js ├── package.json ├── scripts │ └── trigger-test.ts ├── src │ └── index.ts ├── tsconfig.eslint.json └── tsconfig.json ├── bundler ├── .eslintrc.js ├── README.md ├── bin │ └── index.js ├── fixtures │ └── config │ │ ├── .gitignore │ │ ├── bundler.config.js │ │ ├── package.json │ │ ├── source │ │ ├── custom.css │ │ ├── foo │ │ │ ├── bar │ │ │ │ ├── index.ts │ │ │ │ └── web.png │ │ │ └── index.ts │ │ ├── global.d.ts │ │ ├── index.ts │ │ └── utils │ │ │ └── index.ts │ │ └── tsconfig.json ├── package.json ├── src │ ├── bootstrap.ts │ ├── global.d.ts │ ├── index.ts │ ├── logic │ │ ├── alias.ts │ │ ├── babel.config.ts │ │ ├── config.test.ts │ │ ├── config.ts │ │ ├── debug.ts │ │ ├── package.ts │ │ └── rollup.config.ts │ └── tasks │ │ ├── clean.ts │ │ ├── copy.ts │ │ ├── modules.ts │ │ ├── style.ts │ │ └── umd.ts ├── tsconfig.json └── vitest.config.ts ├── story-player ├── .bundle │ └── config ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── bundler.config.js ├── package.json ├── src │ ├── action │ │ ├── action.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ └── util.ts │ ├── actor │ │ ├── base.ts │ │ ├── constructor-map.ts │ │ ├── dom │ │ │ ├── base.ts │ │ │ ├── constructor-map.ts │ │ │ ├── div.ts │ │ │ ├── img.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── util.ts │ │ │ └── video.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ ├── vchart │ │ │ ├── constructor-map.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── vchart.ts │ │ └── vrender │ │ │ ├── base.ts │ │ │ ├── circle.ts │ │ │ ├── constructor-map.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── line.ts │ │ │ ├── path.ts │ │ │ └── text.ts │ ├── common │ │ ├── index.ts │ │ ├── layer-container.ts │ │ ├── model-set.ts │ │ └── stage-model.ts │ ├── constant.ts │ ├── index.ts │ ├── interface │ │ ├── common.ts │ │ └── index.ts │ ├── layer │ │ ├── base.ts │ │ ├── canvas-layer.ts │ │ ├── constructor-map.ts │ │ ├── dom-layer.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ └── vrender-layer.ts │ ├── page │ │ ├── index.ts │ │ ├── interface.ts │ │ └── page.ts │ ├── player.ts │ ├── stage │ │ ├── index.ts │ │ └── stage.ts │ └── utils │ │ ├── animate.ts │ │ ├── common.ts │ │ ├── dom.ts │ │ ├── id.ts │ │ ├── index.ts │ │ └── transform.ts ├── tsconfig.eslint.json └── tsconfig.json └── typescript-json-schema ├── README.md ├── bin └── typescript-json-schema ├── package.json ├── tsconfig.json ├── typescript-json-schema-cli.ts ├── typescript-json-schema.ts └── vchart.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/ISSUE_TEMPLATE/docs_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feaure_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/ISSUE_TEMPLATE/feaure_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pr_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/PULL_REQUEST_TEMPLATE/pr_cn.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/auto-comment-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/auto-comment-issue.yml -------------------------------------------------------------------------------- /.github/workflows/bug-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/bug-server.yml -------------------------------------------------------------------------------- /.github/workflows/hotfix-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/hotfix-release.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/release-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/size-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/size-limit.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/translate-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/translate-issues.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/find-unused-exports.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": {} 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/CONTRIBUTING.ja-JP.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/CONTRIBUTING.zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/README.ja-JP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /common/autoinstallers/create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/create/README.md -------------------------------------------------------------------------------- /common/autoinstallers/create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/create/package.json -------------------------------------------------------------------------------- /common/autoinstallers/create/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/create/src/cli.ts -------------------------------------------------------------------------------- /common/autoinstallers/create/templates/library/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const __VERSION__: string; 2 | -------------------------------------------------------------------------------- /common/autoinstallers/create/templates/library/src/index.ts: -------------------------------------------------------------------------------- 1 | export const version = __VERSION__; 2 | -------------------------------------------------------------------------------- /common/autoinstallers/create/templates/library/vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /common/autoinstallers/lint/change-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/change-all.ts -------------------------------------------------------------------------------- /common/autoinstallers/lint/commit-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/commit-lint.js -------------------------------------------------------------------------------- /common/autoinstallers/lint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/package.json -------------------------------------------------------------------------------- /common/autoinstallers/lint/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/pnpm-lock.yaml -------------------------------------------------------------------------------- /common/autoinstallers/lint/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/prettier.ts -------------------------------------------------------------------------------- /common/autoinstallers/lint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/lint/tsconfig.json -------------------------------------------------------------------------------- /common/autoinstallers/run-script/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/autoinstallers/run-script/run.ts -------------------------------------------------------------------------------- /common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/.npmrc -------------------------------------------------------------------------------- /common/config/rush/.npmrc-publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/.npmrc-publish -------------------------------------------------------------------------------- /common/config/rush/.pnpmfile.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/.pnpmfile.cjs -------------------------------------------------------------------------------- /common/config/rush/artifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/artifactory.json -------------------------------------------------------------------------------- /common/config/rush/build-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/build-cache.json -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /common/config/rush/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/experiments.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/pnpm-config.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/pnpm-lock.yaml -------------------------------------------------------------------------------- /common/config/rush/repo-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/repo-state.json -------------------------------------------------------------------------------- /common/config/rush/rush-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/rush-plugins.json -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/git-hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/git-hooks/commit-msg -------------------------------------------------------------------------------- /common/git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/git-hooks/pre-commit -------------------------------------------------------------------------------- /common/git-hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/git-hooks/pre-push -------------------------------------------------------------------------------- /common/scripts/apply-release-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/apply-release-version.js -------------------------------------------------------------------------------- /common/scripts/get-package-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/get-package-json.js -------------------------------------------------------------------------------- /common/scripts/hotfix-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/hotfix-release.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush-pnpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/install-run-rush-pnpm.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /common/scripts/parse-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/parse-version.js -------------------------------------------------------------------------------- /common/scripts/pre-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/pre-release.js -------------------------------------------------------------------------------- /common/scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/release.js -------------------------------------------------------------------------------- /common/scripts/set-json-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/set-json-file.js -------------------------------------------------------------------------------- /common/scripts/set-prerelease-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/set-prerelease-version.js -------------------------------------------------------------------------------- /common/scripts/sort_deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/sort_deps.js -------------------------------------------------------------------------------- /common/scripts/version-policies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/common/scripts/version-policies.js -------------------------------------------------------------------------------- /common/template/chart.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/chart/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/chart.js: -------------------------------------------------------------------------------- 1 | export * from './esm/chart/index.js'; 2 | -------------------------------------------------------------------------------- /common/template/component.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/component/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/component.js: -------------------------------------------------------------------------------- 1 | export * from './esm/component/index.js'; 2 | -------------------------------------------------------------------------------- /common/template/core.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/core/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/core.js: -------------------------------------------------------------------------------- 1 | export * from './esm/core/index.js'; 2 | -------------------------------------------------------------------------------- /common/template/layout.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/layout/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/layout.js: -------------------------------------------------------------------------------- 1 | export * from './esm/layout/index.js'; 2 | -------------------------------------------------------------------------------- /common/template/mark.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/mark/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/mark.js: -------------------------------------------------------------------------------- 1 | export * from './esm/mark/index.js'; 2 | -------------------------------------------------------------------------------- /common/template/series.d.ts: -------------------------------------------------------------------------------- 1 | export * from './esm/series/index.d.ts'; 2 | -------------------------------------------------------------------------------- /common/template/series.js: -------------------------------------------------------------------------------- 1 | export * from './esm/series/index.js'; 2 | -------------------------------------------------------------------------------- /docs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/.eslintrc.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/README.zh-CN.md -------------------------------------------------------------------------------- /docs/assets/api/en/API/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/en/API/event.md -------------------------------------------------------------------------------- /docs/assets/api/en/API/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/en/API/function.md -------------------------------------------------------------------------------- /docs/assets/api/en/API/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/en/API/theme.md -------------------------------------------------------------------------------- /docs/assets/api/en/API/vchart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/en/API/vchart.md -------------------------------------------------------------------------------- /docs/assets/api/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/menu.json -------------------------------------------------------------------------------- /docs/assets/api/zh/API/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/zh/API/event.md -------------------------------------------------------------------------------- /docs/assets/api/zh/API/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/zh/API/function.md -------------------------------------------------------------------------------- /docs/assets/api/zh/API/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/zh/API/theme.md -------------------------------------------------------------------------------- /docs/assets/api/zh/API/vchart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/api/zh/API/vchart.md -------------------------------------------------------------------------------- /docs/assets/changelog/en/release-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/changelog/en/release-v1.md -------------------------------------------------------------------------------- /docs/assets/changelog/en/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/changelog/en/release.md -------------------------------------------------------------------------------- /docs/assets/changelog/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/changelog/menu.json -------------------------------------------------------------------------------- /docs/assets/changelog/zh/release-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/changelog/zh/release-v1.md -------------------------------------------------------------------------------- /docs/assets/changelog/zh/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/changelog/zh/release.md -------------------------------------------------------------------------------- /docs/assets/contributing/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/contributing/menu.json -------------------------------------------------------------------------------- /docs/assets/contributing/zh/7-How to debug.md: -------------------------------------------------------------------------------- 1 | 2 | # 如何调试代码 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/demos/builtin-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/builtin-theme/README.md -------------------------------------------------------------------------------- /docs/assets/demos/builtin-theme/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/builtin-theme/main.css -------------------------------------------------------------------------------- /docs/assets/demos/builtin-theme/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/builtin-theme/main.ts -------------------------------------------------------------------------------- /docs/assets/demos/builtin-theme/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/chart-history/README.md -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/chart-history/index.ts -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/chart-history/layer.ts -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/chart-history/main.ts -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1486/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1486'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1486/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1644/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1644'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1644/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1765/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1765'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1765/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1786-2/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1786-2'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1786-2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1786/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1786'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1786/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1801/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1801'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1801/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1833/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1833'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1833/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1856/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1856'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1856/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1877/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1877'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1877/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1976/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1976'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1976/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1990s-2/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1990s-2'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1990s-2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1990s/constant.ts: -------------------------------------------------------------------------------- 1 | export const pageKey = '1990s'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/chart1990s/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/timeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/pages/title/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/chart-history/style.css -------------------------------------------------------------------------------- /docs/assets/demos/chart-history/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/assets/demos/qixi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/README.md -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/01/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/01/data.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/01/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/01/util.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/02/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/02/data.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/03/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/03/data.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/03/interface.ts: -------------------------------------------------------------------------------- 1 | export interface Page03OriginalData { 2 | [word: string]: number; 3 | } 4 | -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/index.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/data/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/data/interface.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/index.html -------------------------------------------------------------------------------- /docs/assets/demos/qixi/lib/anime.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/lib/anime.es.js -------------------------------------------------------------------------------- /docs/assets/demos/qixi/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/main.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/pages/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/pages/action.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/pages/actor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/pages/actor.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/pages/index.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/pages/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/pages/layer.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/pages/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/pages/page.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/spec/01/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/spec/01/bar.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/spec/02/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/spec/02/bar.ts -------------------------------------------------------------------------------- /docs/assets/demos/qixi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/qixi/style.css -------------------------------------------------------------------------------- /docs/assets/demos/qixi/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/assets/demos/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/template/README.md -------------------------------------------------------------------------------- /docs/assets/demos/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/template/index.html -------------------------------------------------------------------------------- /docs/assets/demos/template/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/demos/template/main.ts -------------------------------------------------------------------------------- /docs/assets/demos/template/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/assets/demos/vmind-chart-generation/index.scss: -------------------------------------------------------------------------------- 1 | #root { 2 | height: 100vh; 3 | } 4 | -------------------------------------------------------------------------------- /docs/assets/examples-react/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples-react/menu.json -------------------------------------------------------------------------------- /docs/assets/examples/en/axis/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/en/axis/flush.md -------------------------------------------------------------------------------- /docs/assets/examples/en/axis/polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/en/axis/polar.md -------------------------------------------------------------------------------- /docs/assets/examples/en/axis/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/en/axis/style.md -------------------------------------------------------------------------------- /docs/assets/examples/en/custom/mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/en/custom/mark.md -------------------------------------------------------------------------------- /docs/assets/examples/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/menu.json -------------------------------------------------------------------------------- /docs/assets/examples/zh/axis/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/zh/axis/flush.md -------------------------------------------------------------------------------- /docs/assets/examples/zh/axis/polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/zh/axis/polar.md -------------------------------------------------------------------------------- /docs/assets/examples/zh/axis/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/zh/axis/style.md -------------------------------------------------------------------------------- /docs/assets/examples/zh/custom/mark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/examples/zh/custom/mark.md -------------------------------------------------------------------------------- /docs/assets/faq/en/0-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/faq/en/0-template.md -------------------------------------------------------------------------------- /docs/assets/faq/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/faq/menu.json -------------------------------------------------------------------------------- /docs/assets/faq/zh/0-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/faq/zh/0-template.md -------------------------------------------------------------------------------- /docs/assets/guide/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/guide/menu.json -------------------------------------------------------------------------------- /docs/assets/option/en/chart/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/area.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/bar.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/bar3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/bar3d.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/common.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/funnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/funnel.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/gauge.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/heatmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/heatmap.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/line.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/map.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/mosaic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/mosaic.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/pie.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/radar.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/rose.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/sankey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/sankey.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/scatter.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/treemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/treemap.md -------------------------------------------------------------------------------- /docs/assets/option/en/chart/venn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/chart/venn.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/data.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/drill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/drill.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/hover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/hover.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/id.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/layout.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/region.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/scale.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/select.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/series.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/theme.md -------------------------------------------------------------------------------- /docs/assets/option/en/common/xy-pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/common/xy-pos.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/arc.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/image.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/line.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/path.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/rect.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/rule.md -------------------------------------------------------------------------------- /docs/assets/option/en/graphic/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/graphic/text.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/arc.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/area.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/box-plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/box-plot.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/group.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/line.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/path.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/point.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/polygon.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/rect.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/rect3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/rect3d.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/ripple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/ripple.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/symbol.md -------------------------------------------------------------------------------- /docs/assets/option/en/mark/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/mark/text.md -------------------------------------------------------------------------------- /docs/assets/option/en/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/option.md -------------------------------------------------------------------------------- /docs/assets/option/en/region/region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/region/region.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/area.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/bar.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/bar3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/bar3d.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/dot.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/funnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/funnel.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/gauge.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/line.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/link.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/map.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/mosaic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/mosaic.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/pie.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/radar.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/rose.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/sankey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/sankey.md -------------------------------------------------------------------------------- /docs/assets/option/en/series/venn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/en/series/venn.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/area.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/bar.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/bar3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/bar3d.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/common.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/funnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/funnel.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/gauge.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/heatmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/heatmap.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/line.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/map.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/mosaic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/mosaic.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/pie.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/radar.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/rose.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/sankey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/sankey.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/scatter.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/treemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/treemap.md -------------------------------------------------------------------------------- /docs/assets/option/zh/chart/venn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/chart/venn.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/data.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/drill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/drill.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/hover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/hover.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/id.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/layout.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/region.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/scale.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/select.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/series.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/theme.md -------------------------------------------------------------------------------- /docs/assets/option/zh/common/xy-pos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/common/xy-pos.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/arc.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/image.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/line.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/path.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/rect.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/rule.md -------------------------------------------------------------------------------- /docs/assets/option/zh/graphic/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/graphic/text.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/arc.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/area.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/box-plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/box-plot.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/group.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/line.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/path.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/point.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/polygon.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/rect.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/rect3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/rect3d.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/ripple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/ripple.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/symbol.md -------------------------------------------------------------------------------- /docs/assets/option/zh/mark/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/mark/text.md -------------------------------------------------------------------------------- /docs/assets/option/zh/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/option.md -------------------------------------------------------------------------------- /docs/assets/option/zh/region/region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/region/region.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/area.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/bar.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/bar3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/bar3d.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/dot.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/funnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/funnel.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/gauge.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/line.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/link.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/liquid.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/map.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/mosaic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/mosaic.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/pie.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/radar.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/rose.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/sankey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/sankey.md -------------------------------------------------------------------------------- /docs/assets/option/zh/series/venn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/option/zh/series/venn.md -------------------------------------------------------------------------------- /docs/assets/themes/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/colors.json -------------------------------------------------------------------------------- /docs/assets/themes/dark-mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/dark-mobile.json -------------------------------------------------------------------------------- /docs/assets/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/dark.json -------------------------------------------------------------------------------- /docs/assets/themes/light-mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/light-mobile.json -------------------------------------------------------------------------------- /docs/assets/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/light.json -------------------------------------------------------------------------------- /docs/assets/themes/semiDesignDark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/semiDesignDark.json -------------------------------------------------------------------------------- /docs/assets/themes/vScreenClean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/vScreenClean.json -------------------------------------------------------------------------------- /docs/assets/themes/vScreenRedBlue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/assets/themes/vScreenRedBlue.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/libs/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/libs/preview.js -------------------------------------------------------------------------------- /docs/libs/template-parse/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/libs/template-parse/build.js -------------------------------------------------------------------------------- /docs/libs/template-parse/etpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/libs/template-parse/etpl.js -------------------------------------------------------------------------------- /docs/libs/template-parse/md2json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/libs/template-parse/md2json.js -------------------------------------------------------------------------------- /docs/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/menu.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/vchart/faq/10-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/10-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/100-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/100-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/100-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/100-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/11-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/11-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/11-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/12-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/12-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/13-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/13-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/14-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/14-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/14-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/16-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/16-0.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/18-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/18-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/19-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/19-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/20-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/20-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/21-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/21-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/21-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/23-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/23-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/23-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/23-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/23-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/23-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/23-3.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/23-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/23-4.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/24-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/24-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/24-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/24-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/24-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/25-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/25-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/25-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/26-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/26-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/26-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/26-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/26-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/26-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/26-3.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/27-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/27-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/27-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/27-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/27-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/28-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/28-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/28-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/28-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/29-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/29-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/29-1.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/30-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/30-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/30-1.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/31-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/31-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/31-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/31-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/31-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/31-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/32-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/32-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/32-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/40-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/40-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/40-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/41-0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/41-0.PNG -------------------------------------------------------------------------------- /docs/public/vchart/faq/41-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/41-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/42-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/42-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/42-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/42-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/43-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/43-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/43-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/43-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/44-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/44-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/44-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/44-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/45-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/45-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/45-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/45-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/47-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/47-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/47-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/47-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/64-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/64-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/64-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/64-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/64-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/64-2.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/65-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/65-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/66-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/66-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/67-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/67-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/67-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/67-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/67-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/67-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/67-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/67-3.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/68-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/68-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/68-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/68-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/69-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/69-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/69-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/69-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/7-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/7-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/70-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/70-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/70-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/70-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/71-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/71-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/72-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/72-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/72-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/72-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/73-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/73-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/73-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/73-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/75-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/75-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/76-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/76-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/78-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/78-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/79-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/79-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/79-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/79-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/79-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/79-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/8-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/8-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/80-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/80-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/81-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/81-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/83-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/83-0.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/84-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/84-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/85-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/85-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/85-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/85-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/85-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/85-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/85-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/85-3.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/87-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/87-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/87-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/87-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/87-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/87-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/88-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/88-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/88-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/88-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/89-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/89-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/89-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/89-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/89-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/89-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/9-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/9-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/90-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/90-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/91-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/91-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/91-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/91-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/92-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/92-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/93-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/93-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/94-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/94-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/94-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/94-1.gif -------------------------------------------------------------------------------- /docs/public/vchart/faq/95-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/95-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/95-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/95-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/96-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/96-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/96-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/96-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/96-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/96-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/97-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/97-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/97-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/97-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/98-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/98-0.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/98-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/98-1.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/98-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/98-2.png -------------------------------------------------------------------------------- /docs/public/vchart/faq/99-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/faq/99-0.png -------------------------------------------------------------------------------- /docs/public/vchart/guide/theme/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/guide/theme/1.png -------------------------------------------------------------------------------- /docs/public/vchart/guide/theme/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/guide/theme/2.png -------------------------------------------------------------------------------- /docs/public/vchart/guide/theme/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/public/vchart/guide/theme/3.png -------------------------------------------------------------------------------- /docs/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/app.tsx -------------------------------------------------------------------------------- /docs/src/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/demo.tsx -------------------------------------------------------------------------------- /docs/src/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/header.tsx -------------------------------------------------------------------------------- /docs/src/i18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/i18n.tsx -------------------------------------------------------------------------------- /docs/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/main.tsx -------------------------------------------------------------------------------- /docs/src/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/markdown.tsx -------------------------------------------------------------------------------- /docs/src/option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/option.tsx -------------------------------------------------------------------------------- /docs/src/option/description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/option/description.tsx -------------------------------------------------------------------------------- /docs/src/option/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/option/index.css -------------------------------------------------------------------------------- /docs/src/option/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/option/index.tsx -------------------------------------------------------------------------------- /docs/src/option/outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/option/outline.tsx -------------------------------------------------------------------------------- /docs/src/vmind.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/src/vmind.tsx -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/tsconfig.node.json -------------------------------------------------------------------------------- /docs/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/docs/vite.config.js -------------------------------------------------------------------------------- /option: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/package.json -------------------------------------------------------------------------------- /packages/block-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/README.md -------------------------------------------------------------------------------- /packages/block-vchart/block/creator/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "needInterface": false 3 | } 4 | -------------------------------------------------------------------------------- /packages/block-vchart/block/creator/index.ttml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /packages/block-vchart/block/creator/index.ttss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/block-vchart/block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/block/index.js -------------------------------------------------------------------------------- /packages/block-vchart/block/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/block/index.json -------------------------------------------------------------------------------- /packages/block-vchart/block/index.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/block/index.ttml -------------------------------------------------------------------------------- /packages/block-vchart/block/index.ttss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/block/index.ttss -------------------------------------------------------------------------------- /packages/block-vchart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/block-vchart/tsconfig.json -------------------------------------------------------------------------------- /packages/harmony_vchart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/harmony_vchart/.gitignore -------------------------------------------------------------------------------- /packages/harmony_vchart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.11.0-alpha.1 2 | - VChart支持HarmonyOS的StageTS架构 3 | -------------------------------------------------------------------------------- /packages/harmony_vchart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/harmony_vchart/LICENSE -------------------------------------------------------------------------------- /packages/harmony_vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/harmony_vchart/README.md -------------------------------------------------------------------------------- /packages/harmony_vchart/entry/src/main/resources/base/profile/backup_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowToBackupRestore": false 3 | } -------------------------------------------------------------------------------- /packages/harmony_vchart/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/harmony_vchart/hvigorfile.ts -------------------------------------------------------------------------------- /packages/harmony_vchart/library/consumer-rules.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/harmony_vchart/library/src/main/ets/interface.ts: -------------------------------------------------------------------------------- 1 | // 暂时规避ets的类型校验 2 | export type ISpec = any; 3 | -------------------------------------------------------------------------------- /packages/lark-vchart/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/CHANGELOG.json -------------------------------------------------------------------------------- /packages/lark-vchart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/lark-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/README.md -------------------------------------------------------------------------------- /packages/lark-vchart/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/app.js -------------------------------------------------------------------------------- /packages/lark-vchart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/app.json -------------------------------------------------------------------------------- /packages/lark-vchart/gallery/pages/index/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/lark-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/package.json -------------------------------------------------------------------------------- /packages/lark-vchart/rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/rollup.config.ts -------------------------------------------------------------------------------- /packages/lark-vchart/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/src/index.js -------------------------------------------------------------------------------- /packages/lark-vchart/src/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /packages/lark-vchart/src/index.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/src/index.ttml -------------------------------------------------------------------------------- /packages/lark-vchart/src/index.ttss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/lark-vchart/src/index.ttss -------------------------------------------------------------------------------- /packages/openinula-vchart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/openinula-vchart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/openinula-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/openinula-vchart/README.md -------------------------------------------------------------------------------- /packages/openinula-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/openinula-vchart/package.json -------------------------------------------------------------------------------- /packages/openinula-vchart/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const __VERSION__: string; 2 | -------------------------------------------------------------------------------- /packages/openinula-vchart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/openinula-vchart/src/index.ts -------------------------------------------------------------------------------- /packages/openinula-vchart/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/openinula-vchart/src/util.ts -------------------------------------------------------------------------------- /packages/react-vchart/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/.eslintignore -------------------------------------------------------------------------------- /packages/react-vchart/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-vchart/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/CHANGELOG.json -------------------------------------------------------------------------------- /packages/react-vchart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/README.md -------------------------------------------------------------------------------- /packages/react-vchart/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/demo/index.html -------------------------------------------------------------------------------- /packages/react-vchart/demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/demo/src/App.css -------------------------------------------------------------------------------- /packages/react-vchart/demo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/demo/src/App.tsx -------------------------------------------------------------------------------- /packages/react-vchart/demo/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/demo/src/util.ts -------------------------------------------------------------------------------- /packages/react-vchart/demo/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/react-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/package.json -------------------------------------------------------------------------------- /packages/react-vchart/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/rollup.config.js -------------------------------------------------------------------------------- /packages/react-vchart/src/VChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/src/VChart.tsx -------------------------------------------------------------------------------- /packages/react-vchart/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/src/constants.ts -------------------------------------------------------------------------------- /packages/react-vchart/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const __VERSION__: string; 2 | -------------------------------------------------------------------------------- /packages/react-vchart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/src/index.ts -------------------------------------------------------------------------------- /packages/react-vchart/src/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/src/register.ts -------------------------------------------------------------------------------- /packages/react-vchart/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/src/util.ts -------------------------------------------------------------------------------- /packages/react-vchart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/react-vchart/tsconfig.json -------------------------------------------------------------------------------- /packages/taro-vchart/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_CLEAN: "true" 3 | -------------------------------------------------------------------------------- /packages/taro-vchart/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/.eslintrc.js -------------------------------------------------------------------------------- /packages/taro-vchart/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/CHANGELOG.json -------------------------------------------------------------------------------- /packages/taro-vchart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/taro-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/README.md -------------------------------------------------------------------------------- /packages/taro-vchart/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/babel.config.js -------------------------------------------------------------------------------- /packages/taro-vchart/bundler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/bundler.config.js -------------------------------------------------------------------------------- /packages/taro-vchart/config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/config/dev.js -------------------------------------------------------------------------------- /packages/taro-vchart/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/config/index.js -------------------------------------------------------------------------------- /packages/taro-vchart/config/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/config/prod.js -------------------------------------------------------------------------------- /packages/taro-vchart/gallery/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/taro-vchart/gallery/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/gallery/app.ts -------------------------------------------------------------------------------- /packages/taro-vchart/gallery/pages/chart/index.config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | navigationBarTitleText: '首页' 3 | }; 4 | -------------------------------------------------------------------------------- /packages/taro-vchart/gallery/pages/index/index.config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | navigationBarTitleText: '首页' 3 | }; 4 | -------------------------------------------------------------------------------- /packages/taro-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/package.json -------------------------------------------------------------------------------- /packages/taro-vchart/project.lark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/project.lark.json -------------------------------------------------------------------------------- /packages/taro-vchart/project.tt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/project.tt.json -------------------------------------------------------------------------------- /packages/taro-vchart/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/rollup.config.js -------------------------------------------------------------------------------- /packages/taro-vchart/src/chart/index.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | export * from '@visactor/vchart/build/es5'; 3 | -------------------------------------------------------------------------------- /packages/taro-vchart/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/src/index.tsx -------------------------------------------------------------------------------- /packages/taro-vchart/src/simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/src/simple.tsx -------------------------------------------------------------------------------- /packages/taro-vchart/src/vchart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/src/vchart.tsx -------------------------------------------------------------------------------- /packages/taro-vchart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/taro-vchart/tsconfig.json -------------------------------------------------------------------------------- /packages/tt-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/README.md -------------------------------------------------------------------------------- /packages/tt-vchart/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/app.js -------------------------------------------------------------------------------- /packages/tt-vchart/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/app.json -------------------------------------------------------------------------------- /packages/tt-vchart/gallery/data/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/gallery/data/bar.js -------------------------------------------------------------------------------- /packages/tt-vchart/gallery/data/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/gallery/data/pie.js -------------------------------------------------------------------------------- /packages/tt-vchart/gallery/img/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/gallery/img/bar.png -------------------------------------------------------------------------------- /packages/tt-vchart/gallery/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/gallery/img/map.png -------------------------------------------------------------------------------- /packages/tt-vchart/gallery/img/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/gallery/img/pie.png -------------------------------------------------------------------------------- /packages/tt-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/package.json -------------------------------------------------------------------------------- /packages/tt-vchart/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/project.config.json -------------------------------------------------------------------------------- /packages/tt-vchart/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/src/index.js -------------------------------------------------------------------------------- /packages/tt-vchart/src/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /packages/tt-vchart/src/index.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/src/index.ttml -------------------------------------------------------------------------------- /packages/tt-vchart/src/index.ttss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/src/index.ttss -------------------------------------------------------------------------------- /packages/tt-vchart/src/vchart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/tt-vchart/src/vchart/index.js -------------------------------------------------------------------------------- /packages/vchart-extension/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-extension/.eslintrc.js -------------------------------------------------------------------------------- /packages/vchart-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-extension/README.md -------------------------------------------------------------------------------- /packages/vchart-extension/__tests__/runtime/browser/test-page/.gitignore: -------------------------------------------------------------------------------- 1 | *.private.ts 2 | -------------------------------------------------------------------------------- /packages/vchart-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-extension/package.json -------------------------------------------------------------------------------- /packages/vchart-extension/src/components/bar-link/constant.ts: -------------------------------------------------------------------------------- 1 | export const BAR_LINK = 'barLink'; 2 | -------------------------------------------------------------------------------- /packages/vchart-extension/src/components/series-break/constant.ts: -------------------------------------------------------------------------------- 1 | export const SERIES_BREAK = 'seriesBreak'; 2 | -------------------------------------------------------------------------------- /packages/vchart-extension/src/components/series-label/constant.ts: -------------------------------------------------------------------------------- 1 | export const SERIES_LABEL = 'seriesLabel'; 2 | -------------------------------------------------------------------------------- /packages/vchart-extension/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const __VERSION__: string; 2 | -------------------------------------------------------------------------------- /packages/vchart-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-extension/src/index.ts -------------------------------------------------------------------------------- /packages/vchart-extension/src/type/index.ts: -------------------------------------------------------------------------------- 1 | export * from '../charts/ranking-bar/interface'; 2 | -------------------------------------------------------------------------------- /packages/vchart-schema/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/.eslintrc.js -------------------------------------------------------------------------------- /packages/vchart-schema/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/CHANGELOG.json -------------------------------------------------------------------------------- /packages/vchart-schema/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vchart-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/README.md -------------------------------------------------------------------------------- /packages/vchart-schema/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/jest.config.js -------------------------------------------------------------------------------- /packages/vchart-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/package.json -------------------------------------------------------------------------------- /packages/vchart-schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/tsconfig.json -------------------------------------------------------------------------------- /packages/vchart-schema/vchart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-schema/vchart.json -------------------------------------------------------------------------------- /packages/vchart-types/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-types/.eslintrc.js -------------------------------------------------------------------------------- /packages/vchart-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-types/README.md -------------------------------------------------------------------------------- /packages/vchart-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-types/package.json -------------------------------------------------------------------------------- /packages/vchart-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-types/tsconfig.json -------------------------------------------------------------------------------- /packages/vchart-types/types/animation/animate-manager.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vchart-types/types/animation/sequential-animate.d.ts: -------------------------------------------------------------------------------- 1 | export declare function registerSequentialAnimate(): void; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/animation/state-transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare function registerStateTransition(): void; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/chart/funnel/3d/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './funnel-3d'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/chart/histogram/3d/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './histogram-3d'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/chart/pie/3d/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './pie-3d'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/chart/polar/progress-like/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './progress-like-transformer'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/chart/polar/rose-like/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './rose-like-transformer'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/axis/cartesian/util/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/axis/polar/util/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/crosshair/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/custom-mark/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './custom-mark'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/player/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './transform'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/poptip/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const registerPoptip: () => void; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/tooltip/handler/canvas/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './canvas-tooltip-handler'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/tooltip/handler/dom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dom-tooltip-handler'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/component/tooltip/handler/interface/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './style'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/constant/scroll-bar.d.ts: -------------------------------------------------------------------------------- 1 | export declare const SCROLL_BAR_DEFAULT_SIZE = 12; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/constant/sunburst.d.ts: -------------------------------------------------------------------------------- 1 | export declare const SUNBURST_AUTO_VISIBLE_DEFAULT_THRESHOLD = 10; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/constant/waterfall.d.ts: -------------------------------------------------------------------------------- 1 | export declare const WaterfallDefaultSeriesField: string; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/env/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './env'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/index-harmony-mini.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vchart-types/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart-types/types/index.d.ts -------------------------------------------------------------------------------- /packages/vchart-types/types/interaction/drill/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './drillable'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/interaction/zoom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './zoomable'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/mark/transform/filter.d.ts: -------------------------------------------------------------------------------- 1 | export declare const registerMarkFilterTransform: () => void; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/mark/transform/map.d.ts: -------------------------------------------------------------------------------- 1 | export declare const registerMarkMapTransform: () => void; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/chart/formatter/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './formatter'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/chart/resize-zoom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './zoom'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/components/axis-sync-plugin/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './axis-sync'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/components/axis-sync/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './axis-sync'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/components/tooltip-handler/canvas/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './canvas-tooltip-handler'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/components/tooltip-handler/dom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dom-tooltip-handler'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/plugin/vchart/rotate/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './rotate'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/series/progress/circular/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './circular'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/series/progress/linear/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './linear'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/theme/builtin/common/legacy/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './legend'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/util/color.d.ts: -------------------------------------------------------------------------------- 1 | export { Color } from '@visactor/vutils'; 2 | -------------------------------------------------------------------------------- /packages/vchart-types/types/util/spec/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './transform'; 2 | -------------------------------------------------------------------------------- /packages/vchart/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/.eslintignore -------------------------------------------------------------------------------- /packages/vchart/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/.eslintrc.js -------------------------------------------------------------------------------- /packages/vchart/.size-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/.size-limit.json -------------------------------------------------------------------------------- /packages/vchart/CHANGELOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/CHANGELOG.json -------------------------------------------------------------------------------- /packages/vchart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/README.md -------------------------------------------------------------------------------- /packages/vchart/__tests__/data/disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/__tests__/data/disk.ts -------------------------------------------------------------------------------- /packages/vchart/__tests__/runtime/browser/sources/README.md: -------------------------------------------------------------------------------- 1 | - 说明:存放 test-page demo 案例中所需要的本地资源。 2 | -------------------------------------------------------------------------------- /packages/vchart/__tests__/runtime/browser/test-page/.gitignore: -------------------------------------------------------------------------------- 1 | *.private.ts 2 | -------------------------------------------------------------------------------- /packages/vchart/__tests__/util/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/__tests__/util/dom.ts -------------------------------------------------------------------------------- /packages/vchart/bundler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/bundler.config.js -------------------------------------------------------------------------------- /packages/vchart/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vchart/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/jest.config.js -------------------------------------------------------------------------------- /packages/vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/package.json -------------------------------------------------------------------------------- /packages/vchart/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/rollup.config.js -------------------------------------------------------------------------------- /packages/vchart/setup-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/setup-mock.js -------------------------------------------------------------------------------- /packages/vchart/src/animation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/animation/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/animation/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/animation/spec.ts -------------------------------------------------------------------------------- /packages/vchart/src/animation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/animation/utils.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/area/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/area/area.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/bar/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/bar/bar.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/bar/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/base/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/base/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/line/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/line/line.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/map/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/map/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/map/map.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/pie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/pie/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/pie/pie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/pie/pie.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/polar/progress-like/index.ts: -------------------------------------------------------------------------------- 1 | export * from './progress-like-transformer'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/chart/polar/rose-like/index.ts: -------------------------------------------------------------------------------- 1 | export * from './rose-like-transformer'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/chart/rose/rose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/rose/rose.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/stack.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/chart/venn/venn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/chart/venn/venn.ts -------------------------------------------------------------------------------- /packages/vchart/src/compile/morph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/compile/morph.ts -------------------------------------------------------------------------------- /packages/vchart/src/compile/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/compile/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/component/axis/cartesian/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/component/axis/polar/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/component/crosshair/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/component/custom-mark/index.ts: -------------------------------------------------------------------------------- 1 | export * from './custom-mark'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/component/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/component/player/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transform'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/component/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/component/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/base.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/data.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/event.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/funnel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/funnel.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/label.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/layout.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/marker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/marker.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/polar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/constant/polar.ts -------------------------------------------------------------------------------- /packages/vchart/src/constant/scroll-bar.ts: -------------------------------------------------------------------------------- 1 | export const SCROLL_BAR_DEFAULT_SIZE = 12; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/constant/sunburst.ts: -------------------------------------------------------------------------------- 1 | export const SUNBURST_AUTO_VISIBLE_DEFAULT_THRESHOLD = 10; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/core/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/core/factory.ts -------------------------------------------------------------------------------- /packages/vchart/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/core/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/core/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/core/interface.ts -------------------------------------------------------------------------------- /packages/vchart/src/core/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/core/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/core/vchart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/core/vchart.ts -------------------------------------------------------------------------------- /packages/vchart/src/data/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/data/initialize.ts -------------------------------------------------------------------------------- /packages/vchart/src/data/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/data/register.ts -------------------------------------------------------------------------------- /packages/vchart/src/env/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/env/env.ts -------------------------------------------------------------------------------- /packages/vchart/src/env/index.ts: -------------------------------------------------------------------------------- 1 | export * from './env'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/event/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/event/bubble.ts -------------------------------------------------------------------------------- /packages/vchart/src/event/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/event/event.ts -------------------------------------------------------------------------------- /packages/vchart/src/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/event/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/event/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/event/interface.ts -------------------------------------------------------------------------------- /packages/vchart/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const __VERSION__: string; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/index-harmony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/index-harmony.ts -------------------------------------------------------------------------------- /packages/vchart/src/index-lark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/index-lark.ts -------------------------------------------------------------------------------- /packages/vchart/src/index-wx-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/index-wx-simple.ts -------------------------------------------------------------------------------- /packages/vchart/src/index-wx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/index-wx.ts -------------------------------------------------------------------------------- /packages/vchart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/interaction/drill/index.ts: -------------------------------------------------------------------------------- 1 | export * from './drillable'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/interaction/zoom/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zoomable'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/layout/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/layout/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/layout/util.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/arc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/arc.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/area.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/base/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/box-plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/box-plot.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/cell.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/component.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/glyph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/glyph.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/group.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/image.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/label.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/line.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/link-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/link-path.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/liquid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/liquid.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/path.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/rect.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/ripple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/ripple.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/rule.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/symbol.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/text.ts -------------------------------------------------------------------------------- /packages/vchart/src/mark/utils/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/mark/utils/line.ts -------------------------------------------------------------------------------- /packages/vchart/src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/model/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/model/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/model/interface.ts -------------------------------------------------------------------------------- /packages/vchart/src/plugin/chart/formatter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './formatter'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/plugin/chart/resize-zoom/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zoom'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/plugin/components/axis-sync/index.ts: -------------------------------------------------------------------------------- 1 | export * from './axis-sync'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/plugin/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/plugin/other.ts -------------------------------------------------------------------------------- /packages/vchart/src/plugin/vchart/rotate/index.ts: -------------------------------------------------------------------------------- 1 | export * from './rotate'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/region/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/region/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/region/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/region/region.ts -------------------------------------------------------------------------------- /packages/vchart/src/scale/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/scale/interface.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/bar/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/bar/bar.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/dot/dot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/dot/dot.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/geo/geo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/geo/geo.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/map/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/map/map.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/pie/pie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/series/pie/pie.ts -------------------------------------------------------------------------------- /packages/vchart/src/series/progress/circular/index.ts: -------------------------------------------------------------------------------- 1 | export * from './circular'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/series/progress/linear/index.ts: -------------------------------------------------------------------------------- 1 | export * from './linear'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/theme/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/theme/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/theme/interface.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/common.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/cursor.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/data.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/event.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/geo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/geo.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/group.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/layout.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/params.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/scale.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/shape.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/space.ts -------------------------------------------------------------------------------- /packages/vchart/src/typings/visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/typings/visual.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/array.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/color.ts: -------------------------------------------------------------------------------- 1 | export { Color } from '@visactor/vutils'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/util/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/data.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/debug.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/env.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/hierarchy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/hierarchy.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/id.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/image.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/index.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/mark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/mark.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/math.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/model.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/object.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/region.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/scale.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/space.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/spec/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transform'; 2 | -------------------------------------------------------------------------------- /packages/vchart/src/util/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/style.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/text.ts -------------------------------------------------------------------------------- /packages/vchart/src/util/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/util/type.ts -------------------------------------------------------------------------------- /packages/vchart/src/vchart-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/vchart-all.ts -------------------------------------------------------------------------------- /packages/vchart/src/vchart-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/vchart-empty.ts -------------------------------------------------------------------------------- /packages/vchart/src/vchart-pie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/vchart-pie.ts -------------------------------------------------------------------------------- /packages/vchart/src/vchart-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/vchart-simple.ts -------------------------------------------------------------------------------- /packages/vchart/src/vrender-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/src/vrender-tools.ts -------------------------------------------------------------------------------- /packages/vchart/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/vchart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/tsconfig.json -------------------------------------------------------------------------------- /packages/vchart/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/tsconfig.spec.json -------------------------------------------------------------------------------- /packages/vchart/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vchart/tsconfig.test.json -------------------------------------------------------------------------------- /packages/vutils-extension/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vutils-extension/.eslintrc.js -------------------------------------------------------------------------------- /packages/vutils-extension/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vutils-extension/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vutils-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vutils-extension/README.md -------------------------------------------------------------------------------- /packages/vutils-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vutils-extension/package.json -------------------------------------------------------------------------------- /packages/vutils-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/vutils-extension/src/index.ts -------------------------------------------------------------------------------- /packages/vutils-extension/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './object'; 2 | -------------------------------------------------------------------------------- /packages/wx-vchart/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/.eslintrc.js -------------------------------------------------------------------------------- /packages/wx-vchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/README.md -------------------------------------------------------------------------------- /packages/wx-vchart/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/index.wxml -------------------------------------------------------------------------------- /packages/wx-vchart/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/index.wxss -------------------------------------------------------------------------------- /packages/wx-vchart/miniprogram/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/miniprogram/app.ts -------------------------------------------------------------------------------- /packages/wx-vchart/miniprogram/src/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /packages/wx-vchart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/package.json -------------------------------------------------------------------------------- /packages/wx-vchart/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/project.config.json -------------------------------------------------------------------------------- /packages/wx-vchart/rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/rollup.config.ts -------------------------------------------------------------------------------- /packages/wx-vchart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/tsconfig.json -------------------------------------------------------------------------------- /packages/wx-vchart/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/packages/wx-vchart/typings/index.d.ts -------------------------------------------------------------------------------- /packages/wx-vchart/typings/types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/rush.json -------------------------------------------------------------------------------- /share/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/share/eslint-config/package.json -------------------------------------------------------------------------------- /share/eslint-config/profile/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/share/eslint-config/profile/common.js -------------------------------------------------------------------------------- /share/eslint-config/profile/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/share/eslint-config/profile/lib.js -------------------------------------------------------------------------------- /share/eslint-config/profile/react.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./common')('react') -------------------------------------------------------------------------------- /share/ts-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/share/ts-config/package.json -------------------------------------------------------------------------------- /share/ts-config/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/share/ts-config/tsconfig.base.json -------------------------------------------------------------------------------- /tools/bugserver-trigger/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | esm 4 | cjs 5 | node_modules 6 | coverage 7 | -------------------------------------------------------------------------------- /tools/bugserver-trigger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bugserver-trigger/package.json -------------------------------------------------------------------------------- /tools/bugserver-trigger/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bugserver-trigger/src/index.ts -------------------------------------------------------------------------------- /tools/bugserver-trigger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bugserver-trigger/tsconfig.json -------------------------------------------------------------------------------- /tools/bundler/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/.eslintrc.js -------------------------------------------------------------------------------- /tools/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/README.md -------------------------------------------------------------------------------- /tools/bundler/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/bin/index.js -------------------------------------------------------------------------------- /tools/bundler/fixtures/config/.gitignore: -------------------------------------------------------------------------------- 1 | es 2 | cjs 3 | dist 4 | umd -------------------------------------------------------------------------------- /tools/bundler/fixtures/config/source/foo/index.ts: -------------------------------------------------------------------------------- 1 | export const Foo = 'Foo'; 2 | -------------------------------------------------------------------------------- /tools/bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/package.json -------------------------------------------------------------------------------- /tools/bundler/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/bootstrap.ts -------------------------------------------------------------------------------- /tools/bundler/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/global.d.ts -------------------------------------------------------------------------------- /tools/bundler/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/index.ts -------------------------------------------------------------------------------- /tools/bundler/src/logic/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/logic/alias.ts -------------------------------------------------------------------------------- /tools/bundler/src/logic/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/logic/config.test.ts -------------------------------------------------------------------------------- /tools/bundler/src/logic/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/logic/config.ts -------------------------------------------------------------------------------- /tools/bundler/src/logic/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/logic/debug.ts -------------------------------------------------------------------------------- /tools/bundler/src/logic/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/logic/package.ts -------------------------------------------------------------------------------- /tools/bundler/src/tasks/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/tasks/clean.ts -------------------------------------------------------------------------------- /tools/bundler/src/tasks/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/tasks/copy.ts -------------------------------------------------------------------------------- /tools/bundler/src/tasks/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/tasks/modules.ts -------------------------------------------------------------------------------- /tools/bundler/src/tasks/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/tasks/style.ts -------------------------------------------------------------------------------- /tools/bundler/src/tasks/umd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/src/tasks/umd.ts -------------------------------------------------------------------------------- /tools/bundler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/tsconfig.json -------------------------------------------------------------------------------- /tools/bundler/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/bundler/vitest.config.ts -------------------------------------------------------------------------------- /tools/story-player/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_CLEAN: "true" 3 | -------------------------------------------------------------------------------- /tools/story-player/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | esm 4 | cjs 5 | node_modules 6 | coverage 7 | -------------------------------------------------------------------------------- /tools/story-player/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/.eslintrc.js -------------------------------------------------------------------------------- /tools/story-player/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/.gitignore -------------------------------------------------------------------------------- /tools/story-player/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/.prettierrc -------------------------------------------------------------------------------- /tools/story-player/bundler.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/bundler.config.js -------------------------------------------------------------------------------- /tools/story-player/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/package.json -------------------------------------------------------------------------------- /tools/story-player/src/action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/action/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/action/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/action/util.ts -------------------------------------------------------------------------------- /tools/story-player/src/actor/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/actor/base.ts -------------------------------------------------------------------------------- /tools/story-player/src/actor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/actor/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/common/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/constant.ts: -------------------------------------------------------------------------------- 1 | export const PLAYER_PREFIX = 'player'; 2 | -------------------------------------------------------------------------------- /tools/story-player/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/interface/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /tools/story-player/src/layer/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/layer/base.ts -------------------------------------------------------------------------------- /tools/story-player/src/layer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/layer/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/page/index.ts -------------------------------------------------------------------------------- /tools/story-player/src/page/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/page/page.ts -------------------------------------------------------------------------------- /tools/story-player/src/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/player.ts -------------------------------------------------------------------------------- /tools/story-player/src/stage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stage'; 2 | -------------------------------------------------------------------------------- /tools/story-player/src/stage/stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/stage/stage.ts -------------------------------------------------------------------------------- /tools/story-player/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/utils/common.ts -------------------------------------------------------------------------------- /tools/story-player/src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/utils/dom.ts -------------------------------------------------------------------------------- /tools/story-player/src/utils/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/utils/id.ts -------------------------------------------------------------------------------- /tools/story-player/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/src/utils/index.ts -------------------------------------------------------------------------------- /tools/story-player/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/story-player/tsconfig.json -------------------------------------------------------------------------------- /tools/typescript-json-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisActor/VChart/HEAD/tools/typescript-json-schema/README.md --------------------------------------------------------------------------------