├── .commitlintrc.js ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── ----bug-report.md │ ├── ---ask-for-question.md │ └── ---feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── release.yml └── workflows │ ├── auto-merge.yml │ ├── build.yml │ ├── conventional-labels.yml │ ├── deploy.yml │ ├── emoji-helper.yml │ └── release-notify.yml ├── .gitignore ├── .lintmdrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTING.zh-CN.md ├── LICENSE ├── README.en-US.md ├── README.md ├── __tests__ ├── bugs │ ├── bar-axis-label-spec.ts │ ├── bar-changedata-spec.ts │ ├── bug-dual-axes-legend-marker-spec.ts │ ├── bug-dual-axes-same-y-spec.ts │ ├── issue-1-spec.ts │ ├── issue-1174-spec.ts │ ├── issue-1245-spec.ts │ ├── issue-1684-spec.ts │ ├── issue-1708-spec.ts │ ├── issue-1754-spec.ts │ ├── issue-1757-spec.ts │ ├── issue-1758-spec.ts │ ├── issue-1761-spec.ts │ ├── issue-1836-spec.ts │ ├── issue-1870-spec.ts │ ├── issue-1882-spec.ts │ ├── issue-1909-spec.ts │ ├── issue-1944-spec.ts │ ├── issue-1970-spec.ts │ ├── issue-2015-spec.ts │ ├── issue-2021-spec.ts │ ├── issue-2054-spec.ts │ ├── issue-2064-spec.ts │ ├── issue-2078-spec.ts │ ├── issue-2080-spec.ts │ ├── issue-2096-spec.ts │ ├── issue-2105-spec.ts │ ├── issue-2111-spec.ts │ ├── issue-2116-spec.ts │ ├── issue-2122-spec.ts │ ├── issue-2124-spec.ts │ ├── issue-2161-spec.ts │ ├── issue-2180-spec.ts │ ├── issue-2203-spec.ts │ ├── issue-2220-spec.ts │ ├── issue-2229-spec.ts │ ├── issue-2236-spec.ts │ ├── issue-2260-spec.ts │ ├── issue-2264-spec.ts │ ├── issue-2267-spec.ts │ ├── issue-2303-spec.ts │ ├── issue-2352-spec.ts │ ├── issue-2353-spec.ts │ ├── issue-2375-spec.ts │ ├── issue-2394-spec.ts │ ├── issue-2422-spec.ts │ ├── issue-2502-spec.ts │ ├── issue-2572-spec.ts │ ├── issue-2573-spec.ts │ ├── issue-2616-spec.ts │ ├── issue-2636-spec.ts │ ├── issue-2651-spec.ts │ ├── issue-2734-spec.ts │ ├── issue-2749-spec.ts │ ├── issue-2755-spec.ts │ ├── issue-2783-spec.ts │ ├── issue-2881-spec.ts │ ├── issue-2906-spec.ts │ ├── issue-2908-spec.ts │ ├── issue-292-spec.ts │ ├── issue-2930-spec.ts │ ├── issue-294-spec.ts │ ├── issue-3012-spec.ts │ ├── issue-3084-spec.ts │ ├── issue-3085-spec.ts │ ├── issue-3200-spec.ts │ ├── issue-3262-spec.ts │ ├── issue-3367-spec.ts │ ├── issue-3804-spec.ts │ ├── issue-968-spec.ts │ ├── issue-charts-367-spec.ts │ └── pie-statistic-spec.ts ├── data │ ├── antv-star.ts │ ├── area.ts │ ├── baby-names.ts │ ├── basic-heatmap.ts │ ├── bi-directional.ts │ ├── box.ts │ ├── bullet.ts │ ├── chord-population.ts │ ├── circle-packing.ts │ ├── common.ts │ ├── conversion.ts │ ├── country-economy.ts │ ├── fireworks-sales.ts │ ├── gender.ts │ ├── global-oil-new.ts │ ├── heatmap.ts │ ├── histogram-data.ts │ ├── income.ts │ ├── life-expectancy.ts │ ├── mix-data.ts │ ├── mobile.ts │ ├── nintendo.ts │ ├── parallel-set.ts │ ├── party-support.ts │ ├── pv-uv.ts │ ├── radar.ts │ ├── sales.ts │ ├── sankey-energy.ts │ ├── stock.ts │ ├── sunburst.ts │ ├── treemap-nest.ts │ ├── treemap.ts │ └── violin.ts ├── unit │ ├── adaptor │ │ ├── common-spec.ts │ │ ├── connected-area-spec.ts │ │ ├── conversion-tag-spec.ts │ │ ├── geometries │ │ │ ├── base-spec.ts │ │ │ ├── interval-spec.ts │ │ │ └── schema-spec.ts │ │ └── pattern-spec.ts │ ├── core │ │ ├── global-spec.ts │ │ ├── index-spec.ts │ │ ├── locale-spec.ts │ │ └── pie-state-spec.ts │ ├── index-spec.ts │ ├── interactions │ │ ├── brush-spec.ts │ │ └── drill-down-spec.ts │ ├── lab-spec.ts │ ├── plots │ │ ├── area │ │ │ ├── animation-spec.ts │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── line-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── percent-spec.ts │ │ │ ├── point-spec.ts │ │ │ ├── shape-spec.ts │ │ │ ├── stack-spec.ts │ │ │ ├── start-on-zero-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── y-meta-min-max-spec.ts │ │ ├── bar │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── stacked-grouped-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── y-meta-min-max-spec.ts │ │ ├── bidirectional-bar │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── layout-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── meta-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── update-spec.ts │ │ │ └── utils-spec.ts │ │ ├── box │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── group-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── outliers-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ │ ├── bullet │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── layout-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── chord │ │ │ ├── index-spec.ts │ │ │ ├── state-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── circle-packing │ │ │ ├── animation-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── column │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── percent-spec.ts │ │ │ ├── range-spec.ts │ │ │ ├── scrollbar-spec.ts │ │ │ ├── stack-group-percent-spec.ts │ │ │ ├── stack-group-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── update-spec.ts │ │ │ └── y-meta-min-max-spec.ts │ │ ├── dual-axes │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── column-spec.ts │ │ │ ├── default-options-spec.ts │ │ │ ├── group-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── line-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── point-spec.ts │ │ │ ├── slider-spec.ts │ │ │ ├── stack-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── theme-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── util │ │ │ │ └── option-spec.ts │ │ ├── facet │ │ │ ├── animation-spec.ts │ │ │ ├── geometries-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── use-plot-spec.ts │ │ │ └── utils-spec.ts │ │ ├── funnel │ │ │ ├── basic-spec.ts │ │ │ ├── compare-spec.ts │ │ │ ├── conversion-tag-spec.ts │ │ │ ├── dynamic-height-spec.ts │ │ │ ├── facet-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── gauge │ │ │ ├── index-spec.ts │ │ │ ├── shapes │ │ │ │ └── index-spec.ts │ │ │ ├── statistic-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ │ ├── heatmap │ │ │ ├── axis-spec.ts │ │ │ ├── coordinate-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── shape-spec.ts │ │ │ ├── size-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── theme-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── type-spec.ts │ │ ├── histogram │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── line │ │ │ ├── animation-spec.ts │ │ │ ├── annotation-spec.ts │ │ │ ├── area-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── limit-in-plot-spec.ts │ │ │ ├── line-mapping-spec.ts │ │ │ ├── point-spec.ts │ │ │ ├── shape-spec.ts │ │ │ ├── stack-spec.ts │ │ │ ├── step-type-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── y-meta-min-max-spec.ts │ │ ├── liquid │ │ │ ├── color-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── liquid-shape-spec.ts │ │ │ ├── liquid-style-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ └── statistic-spec.ts │ │ ├── multi-view │ │ │ ├── index-spec.ts │ │ │ ├── interactions │ │ │ │ └── association-spec.ts │ │ │ ├── multi-pie-spec.ts │ │ │ ├── multi-plots-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ │ ├── pie │ │ │ ├── annotation-spec.ts │ │ │ ├── coordinate-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── html-statistic-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── statistic-spec.ts │ │ │ ├── theme-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ │ ├── progress │ │ │ ├── index-spec.ts │ │ │ └── utils-spec.ts │ │ ├── radar │ │ │ ├── annotation-spec.ts │ │ │ ├── area-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── coordinate-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── point-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── radial-bar │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ │ ├── ring-progress │ │ │ ├── index-spec.ts │ │ │ └── statistic-spec.ts │ │ ├── rose │ │ │ ├── animation-spec.ts │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── coordinate-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── sankey │ │ │ ├── adaptor-spec.ts │ │ │ ├── animation-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── circle-spec.ts │ │ │ ├── depth-spec.ts │ │ │ ├── draggable-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interations-spec.ts │ │ │ ├── layout-spec.ts │ │ │ ├── node-link-spec.ts │ │ │ ├── sankey │ │ │ │ └── monkey-spec.ts │ │ │ ├── state-spec.ts │ │ │ └── type-spec.ts │ │ ├── scatter │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── default-config-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── quadrant-spec.ts │ │ │ ├── regression-line-spec.ts │ │ │ ├── shape-spec.ts │ │ │ ├── size-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── util-spec.ts │ │ ├── stock │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── sunburst │ │ │ ├── change-data-spec.ts │ │ │ ├── drill-down-spec.ts │ │ │ ├── field-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── treemap-spec.ts │ │ ├── tiny-area │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ └── theme-spec.ts │ │ ├── tiny-column │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ └── theme-spec.ts │ │ ├── tiny-line │ │ │ ├── change-data-spec.ts │ │ │ ├── get-tiny-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ └── theme-spec.ts │ │ ├── treemap │ │ │ ├── axis-spec.ts │ │ │ ├── basic-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── interactions │ │ │ │ ├── drill-down-spec.ts │ │ │ │ ├── treemap-drill-down-spec.ts │ │ │ │ └── view-zoom-spec.ts │ │ │ ├── lable-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── pattern-spec.ts │ │ │ ├── rect-style-spec.ts │ │ │ ├── sort-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ ├── treemap-nest-spec.ts │ │ │ └── utils-spec.ts │ │ ├── venn │ │ │ ├── blend-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── interaction-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── padding-spec.ts │ │ │ ├── style-spec.ts │ │ │ └── tooltip-spec.ts │ │ ├── violin │ │ │ ├── animation-spec.ts │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── box-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── state-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ ├── utils-spec.ts │ │ │ └── violin-shape-spec.ts │ │ ├── waterfall │ │ │ ├── annotation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── component-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── shape-spec.ts │ │ │ ├── state-sepc.ts │ │ │ ├── style-spec.ts │ │ │ └── utils-spec.ts │ │ └── word-cloud │ │ │ ├── animation-spec.ts │ │ │ ├── axis-spec.ts │ │ │ ├── change-data-spec.ts │ │ │ ├── color-spec.ts │ │ │ ├── index-spec.ts │ │ │ ├── label-spec.ts │ │ │ ├── legend-spec.ts │ │ │ ├── style-spec.ts │ │ │ ├── tooltip-spec.ts │ │ │ └── utils-spec.ts │ ├── plugin │ │ ├── index-spec.ts │ │ └── step-line.ts │ └── utils │ │ ├── color │ │ └── blend-spec.ts │ │ ├── conversion-spec.ts │ │ ├── data-spec.ts │ │ ├── deep-assign-spec.ts │ │ ├── dom-spec.ts │ │ ├── flow-spec.ts │ │ ├── geometry-spec.ts │ │ ├── get-meta-spec.ts │ │ ├── hierarchy │ │ ├── partition-spec.ts │ │ ├── treemap-spec.ts │ │ └── util-spec.ts │ │ ├── invariant-spec.ts │ │ ├── is-between-spec.ts │ │ ├── kebab-case-spec.ts │ │ ├── matrix-spec.ts │ │ ├── measure-text-spec.ts │ │ ├── number-spec.ts │ │ ├── padding-spec.ts │ │ ├── path-spec.ts │ │ ├── pattern │ │ ├── dot-spec.ts │ │ ├── index-spec.ts │ │ ├── line-spec.ts │ │ ├── square-spec.ts │ │ └── util-spec.ts │ │ ├── pick-spec.ts │ │ ├── statistic-spec.ts │ │ ├── template-spec.ts │ │ ├── tooltip-spec.ts │ │ ├── transform-label-spec.ts │ │ ├── transform │ │ ├── chord-spec.ts │ │ ├── deepPercent-spec.ts │ │ ├── histogram-spec.ts │ │ ├── percent-spec.ts │ │ ├── quantile-spec.ts │ │ └── word-cloud-spec.ts │ │ └── view-spec.ts └── utils │ ├── delay.ts │ ├── dom.ts │ ├── event.ts │ ├── getPixelColor.ts │ └── number.ts ├── api-extractor.json ├── jest.config.js ├── jest.setup.js ├── package.json ├── scripts └── manual.ts ├── site ├── .dumi │ ├── github-markdown-light.css │ ├── global.ts │ ├── prism-one-light.css │ └── style.css ├── .dumirc.ts ├── CNAME ├── docs │ ├── api │ │ ├── advanced-plots │ │ │ ├── facet.en.md │ │ │ ├── facet.zh.md │ │ │ ├── mix.en.md │ │ │ └── mix.zh.md │ │ ├── components │ │ │ ├── annotations.en.md │ │ │ ├── annotations.zh.md │ │ │ ├── axis.en.md │ │ │ ├── axis.zh.md │ │ │ ├── conversion-tag.en.md │ │ │ ├── conversion-tag.zh.md │ │ │ ├── label.en.md │ │ │ ├── label.zh.md │ │ │ ├── legend.en.md │ │ │ ├── legend.zh.md │ │ │ ├── scrollbar.en.md │ │ │ ├── scrollbar.zh.md │ │ │ ├── slider.en.md │ │ │ ├── slider.zh.md │ │ │ ├── statistic.en.md │ │ │ ├── statistic.zh.md │ │ │ ├── tooltip.en.md │ │ │ └── tooltip.zh.md │ │ ├── graphic-style.en.md │ │ ├── graphic-style.zh.md │ │ ├── options │ │ │ ├── animation.en.md │ │ │ ├── animation.zh.md │ │ │ ├── events.en.md │ │ │ ├── events.zh.md │ │ │ ├── g2plot.en.md │ │ │ ├── g2plot.zh.md │ │ │ ├── interactions.en.md │ │ │ ├── interactions.zh.md │ │ │ ├── meta.en.md │ │ │ ├── meta.zh.md │ │ │ ├── pattern.en.md │ │ │ ├── pattern.zh.md │ │ │ ├── shape.en.md │ │ │ ├── shape.zh.md │ │ │ ├── theme.en.md │ │ │ └── theme.zh.md │ │ ├── plot-api.en.md │ │ ├── plot-api.zh.md │ │ └── plots │ │ │ ├── area.en.md │ │ │ ├── area.zh.md │ │ │ ├── bar.en.md │ │ │ ├── bar.zh.md │ │ │ ├── bidirectional-bar.en.md │ │ │ ├── bidirectional-bar.zh.md │ │ │ ├── box.en.md │ │ │ ├── box.zh.md │ │ │ ├── bullet.en.md │ │ │ ├── bullet.zh.md │ │ │ ├── circle-packing.en.md │ │ │ ├── circle-packing.zh.md │ │ │ ├── column.en.md │ │ │ ├── column.zh.md │ │ │ ├── dual-axes.en.md │ │ │ ├── dual-axes.zh.md │ │ │ ├── funnel.en.md │ │ │ ├── funnel.zh.md │ │ │ ├── gauge.en.md │ │ │ ├── gauge.zh.md │ │ │ ├── heatmap.en.md │ │ │ ├── heatmap.zh.md │ │ │ ├── histogram.en.md │ │ │ ├── histogram.zh.md │ │ │ ├── line.en.md │ │ │ ├── line.zh.md │ │ │ ├── liquid.en.md │ │ │ ├── liquid.zh.md │ │ │ ├── pie.en.md │ │ │ ├── pie.zh.md │ │ │ ├── progress.en.md │ │ │ ├── progress.zh.md │ │ │ ├── radar.en.md │ │ │ ├── radar.zh.md │ │ │ ├── radial-bar.en.md │ │ │ ├── radial-bar.zh.md │ │ │ ├── ring-progress.en.md │ │ │ ├── ring-progress.zh.md │ │ │ ├── rose.en.md │ │ │ ├── rose.zh.md │ │ │ ├── sankey.en.md │ │ │ ├── sankey.zh.md │ │ │ ├── scatter.en.md │ │ │ ├── scatter.zh.md │ │ │ ├── stock.en.md │ │ │ ├── stock.zh.md │ │ │ ├── sunburst.en.md │ │ │ ├── sunburst.zh.md │ │ │ ├── tiny-area.en.md │ │ │ ├── tiny-area.zh.md │ │ │ ├── tiny-column.en.md │ │ │ ├── tiny-column.zh.md │ │ │ ├── tiny-line.en.md │ │ │ ├── tiny-line.zh.md │ │ │ ├── treemap.en.md │ │ │ ├── treemap.zh.md │ │ │ ├── venn.en.md │ │ │ ├── venn.zh.md │ │ │ ├── violin.en.md │ │ │ ├── violin.zh.md │ │ │ ├── waterfall.en.md │ │ │ ├── waterfall.zh.md │ │ │ ├── word-cloud.en.md │ │ │ └── word-cloud.zh.md │ ├── common │ │ ├── animate-option.en.md │ │ ├── animate-option.zh.md │ │ ├── annotations.en.md │ │ ├── annotations.zh.md │ │ ├── annotations │ │ │ ├── arc.en.md │ │ │ ├── arc.zh.md │ │ │ ├── base-annotation.en.md │ │ │ ├── base-annotation.zh.md │ │ │ ├── data-marker.en.md │ │ │ ├── data-marker.zh.md │ │ │ ├── data-region.en.md │ │ │ ├── data-region.zh.md │ │ │ ├── html.en.md │ │ │ ├── html.zh.md │ │ │ ├── image.en.md │ │ │ ├── image.zh.md │ │ │ ├── line.en.md │ │ │ ├── line.zh.md │ │ │ ├── region-filter.en.md │ │ │ ├── region-filter.zh.md │ │ │ ├── region.en.md │ │ │ ├── region.zh.md │ │ │ ├── shape.en.md │ │ │ ├── shape.zh.md │ │ │ ├── text.en.md │ │ │ └── text.zh.md │ │ ├── axis.en.md │ │ ├── axis.zh.md │ │ ├── bar-style.en.md │ │ ├── bar-style.zh.md │ │ ├── brush.en.md │ │ ├── brush.zh.md │ │ ├── chart-methods.en.md │ │ ├── chart-methods.zh.md │ │ ├── chart-options.en.md │ │ ├── chart-options.zh.md │ │ ├── chord.en.md │ │ ├── chord.zh.md │ │ ├── color.en.md │ │ ├── color.zh.md │ │ ├── column-style.en.md │ │ ├── column-style.zh.md │ │ ├── common-component.en.md │ │ ├── common-component.zh.md │ │ ├── common-iview.en.md │ │ ├── common-iview.zh.md │ │ ├── component-no-axis.en.md │ │ ├── component-no-axis.zh.md │ │ ├── component-polygon.en.md │ │ ├── component-polygon.zh.md │ │ ├── component-progress.en.md │ │ ├── component-progress.zh.md │ │ ├── component-tiny.en.md │ │ ├── component-tiny.zh.md │ │ ├── component.en.md │ │ ├── component.zh.md │ │ ├── connected-area.en.md │ │ ├── connected-area.zh.md │ │ ├── conversion-tag.en.md │ │ ├── conversion-tag.zh.md │ │ ├── coordinate.en.md │ │ ├── coordinate.zh.md │ │ ├── crosshairs-text.en.md │ │ ├── crosshairs-text.zh.md │ │ ├── data.en.md │ │ ├── data.zh.md │ │ ├── drill-down.en.md │ │ ├── drill-down.zh.md │ │ ├── events.en.md │ │ ├── events.zh.md │ │ ├── facet-title.en.md │ │ ├── facet-title.zh.md │ │ ├── geometry-cfg.en.md │ │ ├── geometry-cfg.zh.md │ │ ├── interactions.en.md │ │ ├── interactions.zh.md │ │ ├── label.en.md │ │ ├── label.zh.md │ │ ├── legend-cfg.en.md │ │ ├── legend-cfg.zh.md │ │ ├── legend.en.md │ │ ├── legend.zh.md │ │ ├── line-style.en.md │ │ ├── line-style.zh.md │ │ ├── marker.en.md │ │ ├── marker.zh.md │ │ ├── meta.en.md │ │ ├── meta.zh.md │ │ ├── pattern.en.md │ │ ├── pattern.zh.md │ │ ├── plot-cfg.en.md │ │ ├── plot-cfg.zh.md │ │ ├── point-style.en.md │ │ ├── point-style.zh.md │ │ ├── scrollbar.en.md │ │ ├── scrollbar.zh.md │ │ ├── shape-style.en.md │ │ ├── shape-style.zh.md │ │ ├── slider.en.md │ │ ├── slider.zh.md │ │ ├── state-style.en.md │ │ ├── state-style.zh.md │ │ ├── statistic.en.md │ │ ├── statistic.zh.md │ │ ├── text-style.en.md │ │ ├── text-style.zh.md │ │ ├── theme.en.md │ │ ├── theme.zh.md │ │ ├── tooltip.en.md │ │ ├── tooltip.zh.md │ │ ├── xy-field.en.md │ │ └── xy-field.zh.md │ ├── manual │ │ ├── contact.en.md │ │ ├── contact.zh.md │ │ ├── faq.en.md │ │ ├── faq.zh.md │ │ ├── getting-started.en.md │ │ ├── getting-started.zh.md │ │ ├── introduction.en.md │ │ ├── introduction.zh.md │ │ ├── plots │ │ │ ├── area.en.md │ │ │ ├── area.zh.md │ │ │ ├── bar.en.md │ │ │ ├── bar.zh.md │ │ │ ├── bullet.en.md │ │ │ ├── bullet.zh.md │ │ │ ├── column.en.md │ │ │ ├── column.zh.md │ │ │ ├── facet.en.md │ │ │ ├── facet.zh.md │ │ │ ├── funnel.en.md │ │ │ ├── funnel.zh.md │ │ │ ├── gauge.en.md │ │ │ ├── gauge.zh.md │ │ │ ├── heatmap.en.md │ │ │ ├── heatmap.zh.md │ │ │ ├── histogram.en.md │ │ │ ├── histogram.zh.md │ │ │ ├── line.en.md │ │ │ ├── line.zh.md │ │ │ ├── liquid.en.md │ │ │ ├── liquid.zh.md │ │ │ ├── pie.en.md │ │ │ ├── pie.zh.md │ │ │ ├── radar.en.md │ │ │ ├── radar.zh.md │ │ │ ├── scatter.en.md │ │ │ ├── scatter.zh.md │ │ │ ├── venn.en.md │ │ │ ├── venn.zh.md │ │ │ ├── violin.en.md │ │ │ ├── violin.zh.md │ │ │ ├── waterfall.en.md │ │ │ └── waterfall.zh.md │ │ ├── plugin.en.md │ │ ├── plugin.zh.md │ │ ├── upgrade.en.md │ │ └── upgrade.zh.md │ └── styles │ │ ├── component.md │ │ └── style.md ├── examples │ ├── area │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic-annotation.ts │ │ │ │ ├── basic-gradients.ts │ │ │ │ ├── basic-slider.ts │ │ │ │ ├── basic.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── percent │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── meta.json │ │ │ │ └── pattern.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── stacked │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── area-large-data.ts │ │ │ ├── basic-slider.ts │ │ │ ├── basic.ts │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── bar │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── bar-background.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── color.ts │ │ │ │ ├── conversion-tag.ts │ │ │ │ ├── coordinate.ts │ │ │ │ ├── dynamic.ts │ │ │ │ ├── meta.json │ │ │ │ ├── scrollbar.ts │ │ │ │ ├── shape.ts │ │ │ │ ├── width-ratio.ts │ │ │ │ └── width.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── grouped │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── corner-radius.ts │ │ │ │ ├── dodge-padding.ts │ │ │ │ ├── interval-padding.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── percent │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── range │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── stacked │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── case │ │ ├── advanced │ │ │ ├── demo │ │ │ │ ├── associate-filter.ts │ │ │ │ ├── associate-pie-tooltip.ts │ │ │ │ ├── conversion-analysis-bar.ts │ │ │ │ ├── conversion-analysis.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── customize │ │ │ ├── demo │ │ │ │ ├── customize-tooltip.ts │ │ │ │ ├── desire-heatmap.ts │ │ │ │ ├── line.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── interactions │ │ │ ├── demo │ │ │ │ ├── element-selected.ts │ │ │ │ ├── funnel-element-selected.ts │ │ │ │ ├── meta.json │ │ │ │ └── pie-element-selected.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── statistical-scenario │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── compare-funnel.ts │ │ │ ├── conversion-funnel.ts │ │ │ ├── funnel-analysis.jsx │ │ │ ├── funnel.jsx │ │ │ ├── meta.json │ │ │ ├── pie.ts │ │ │ ├── trend-funnel.ts │ │ │ └── trend.jsx │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── column │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── color.ts │ │ │ │ ├── conversion-tag.ts │ │ │ │ ├── coordinate.ts │ │ │ │ ├── custom-shape.ts │ │ │ │ ├── meta.json │ │ │ │ ├── region-annotation.ts │ │ │ │ ├── scrollbar.ts │ │ │ │ ├── slider.ts │ │ │ │ ├── width-ratio.ts │ │ │ │ └── width.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── grouped │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── corner-radius.ts │ │ │ │ ├── dodge-padding.ts │ │ │ │ ├── interval-padding.ts │ │ │ │ ├── meta.json │ │ │ │ ├── rc-tooltip.jsx │ │ │ │ ├── stacked.ts │ │ │ │ ├── stacked2.ts │ │ │ │ └── tooltip-formatter.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── percent │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── interaction.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── range │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── scenario │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── stacked │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── annotation-label.ts │ │ │ ├── basic.ts │ │ │ ├── column-background.ts │ │ │ ├── connect-area.ts │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── component │ │ ├── annotation │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── image-annotation.ts │ │ │ │ ├── line-annotation-accurate.ts │ │ │ │ ├── line-annotation-position.jsx │ │ │ │ ├── line-annotation.ts │ │ │ │ ├── meta.json │ │ │ │ ├── operate-annotation.ts │ │ │ │ ├── region-and-data-marker.ts │ │ │ │ ├── region-annotation.ts │ │ │ │ ├── text-annotation1.ts │ │ │ │ └── text-annotation2.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── label │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── custom-label.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── legend │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── legend-flippage.ts │ │ │ │ ├── legend-focus.ts │ │ │ │ ├── legend-item-cfg.ts │ │ │ │ ├── legend-item-value.ts │ │ │ │ ├── legend-marker-customize.ts │ │ │ │ ├── legend-position.jsx │ │ │ │ ├── legend-radio.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── tooltip │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── html-tooltip.ts │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── dual-axes │ │ ├── column-line │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── column-line.ts │ │ │ │ ├── column-multi-line.ts │ │ │ │ ├── custom-column-line.ts │ │ │ │ ├── demo-more-1.ts │ │ │ │ ├── meta.json │ │ │ │ ├── pattern.ts │ │ │ │ ├── range-column-line.ts │ │ │ │ └── slider-column-line.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── dual-line │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── custom-dual-line.ts │ │ │ │ ├── dual-line.ts │ │ │ │ ├── dual-multi-line.ts │ │ │ │ ├── dual-step-line.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── grouped-column-line │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── custom-grouped-column-line.ts │ │ │ │ ├── grouped-column-line.ts │ │ │ │ ├── grouped-column-multi-line.ts │ │ │ │ ├── meta.json │ │ │ │ └── pattern-with-callback.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── grouped-stacked-line │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── meta.json │ │ │ │ └── stacked-grouped-column-line.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── stacked-column-line │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── custom-stacked-column-line.ts │ │ │ ├── meta.json │ │ │ ├── stacked-column-line.ts │ │ │ ├── stacked-column-multi-line.ts │ │ │ └── stacked-percent-column-line.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── dynamic-plots │ │ ├── animation │ │ │ ├── demo │ │ │ │ ├── animation-column.jsx │ │ │ │ ├── animation-line.jsx │ │ │ │ ├── animation-pie.jsx │ │ │ │ ├── easing-effects.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── basic │ │ │ ├── demo │ │ │ │ ├── dynamic-area.ts │ │ │ │ ├── dynamic-column.ts │ │ │ │ ├── dynamic-gauge.ts │ │ │ │ ├── dynamic-pie.ts │ │ │ │ ├── dynamic-spline.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── brush │ │ │ ├── demo │ │ │ ├── advanced-brush1.ts │ │ │ ├── advanced-brush2.ts │ │ │ ├── advanced-brush3.ts │ │ │ ├── bar-brush.ts │ │ │ ├── column-brush-y-highlight.ts │ │ │ ├── column-brush-y.ts │ │ │ ├── column-brush.ts │ │ │ ├── meta.json │ │ │ ├── scatter-brush-filter.ts │ │ │ └── scatter-brush.jsx │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── general │ │ ├── events │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── conversion-tag-with-link.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── state │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── custom-state-style.ts │ │ │ │ ├── meta.json │ │ │ │ └── set-state.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── theme │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── custom-theme.ts │ │ │ ├── dark.ts │ │ │ ├── meta.json │ │ │ └── register-theme.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── heatmap │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── calendar.ts │ │ │ │ ├── meta.json │ │ │ │ ├── pattern.ts │ │ │ │ ├── polar.ts │ │ │ │ ├── shape.ts │ │ │ │ └── size.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── density │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── line │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── custom-marker.ts │ │ │ │ ├── line-annotation.ts │ │ │ │ ├── line-point-style.ts │ │ │ │ ├── line-slider.ts │ │ │ │ ├── line-with-data-marker.ts │ │ │ │ ├── line.ts │ │ │ │ ├── meta.json │ │ │ │ ├── reflect-y.ts │ │ │ │ └── spline.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── multiple │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── line-area.ts │ │ │ │ ├── line-color.ts │ │ │ │ ├── line-grid.ts │ │ │ │ ├── line-label.ts │ │ │ │ ├── line-large-data.ts │ │ │ │ ├── marker-active.ts │ │ │ │ ├── meta.json │ │ │ │ └── style-callback.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── scenario │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── derived-measures-line.ts │ │ │ │ ├── meta.json │ │ │ │ ├── multiple-measures-line.ts │ │ │ │ └── series-multiple-measures-line.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── step │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── line-multiple.ts │ │ │ ├── line.ts │ │ │ └── meta.json │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── more-plots │ │ ├── bidirectional-bar │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── label.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── meta.json │ │ │ │ └── vertical-label.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── box │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── group.ts │ │ │ │ ├── label.ts │ │ │ │ ├── meta-alias.ts │ │ │ │ ├── meta.json │ │ │ │ ├── outliers.ts │ │ │ │ └── tooltip.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── circle-packing │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── custom-padding.ts │ │ │ │ ├── label.ts │ │ │ │ ├── meta.json │ │ │ │ ├── nest.ts │ │ │ │ └── philosopher.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── funnel │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic-transpose.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── compare-transpose.ts │ │ │ │ ├── compare.ts │ │ │ │ ├── dynamic-height-transpose.ts │ │ │ │ ├── dynamic-height.ts │ │ │ │ ├── facet-transpose.ts │ │ │ │ ├── facet.ts │ │ │ │ ├── meta.json │ │ │ │ ├── pyramid.ts │ │ │ │ └── static-field.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── histogram │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── binWidth.ts │ │ │ │ ├── meta.json │ │ │ │ └── stack.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── radar │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── area-alternate-grid.ts │ │ │ │ ├── area-grid.ts │ │ │ │ ├── area.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── line-alternate-grid.ts │ │ │ │ ├── line-grid.ts │ │ │ │ ├── line.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── radial-bar │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── apple-watch-activity.ts │ │ │ │ ├── background.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── color.ts │ │ │ │ ├── grouped.ts │ │ │ │ ├── line.ts │ │ │ │ ├── meta.json │ │ │ │ ├── round-corner.ts │ │ │ │ └── stacked.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── stock │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── custom-color.ts │ │ │ │ ├── custom-crosshairs.ts │ │ │ │ ├── custom-style.ts │ │ │ │ ├── custom-tooltip.ts │ │ │ │ ├── large-data.ts │ │ │ │ ├── meta-alias.ts │ │ │ │ ├── meta.json │ │ │ │ └── slider.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── sunburst │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── active-depth.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── basic2.ts │ │ │ │ ├── color-field.ts │ │ │ │ ├── color.ts │ │ │ │ ├── custom-tooltip-items.ts │ │ │ │ ├── label.ts │ │ │ │ ├── meta.json │ │ │ │ ├── pattern.ts │ │ │ │ ├── style.ts │ │ │ │ └── tooltip-fields.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── treemap │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── drill-down.ts │ │ │ │ ├── meta.json │ │ │ │ └── treemap-nest.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── venn │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── blend-mode.ts │ │ │ │ ├── color.ts │ │ │ │ ├── customize.ts │ │ │ │ ├── element-active.ts │ │ │ │ ├── element-highlight.ts │ │ │ │ ├── interaction.ts │ │ │ │ ├── label.ts │ │ │ │ ├── legend-active.ts │ │ │ │ ├── legend-highlight.ts │ │ │ │ ├── meta.json │ │ │ │ └── tooltip.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── violin │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── group.ts │ │ │ │ ├── meta.json │ │ │ │ ├── shape.ts │ │ │ │ └── tooltip.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── waterfall │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── absolute-label.ts │ │ │ │ ├── annotation.ts │ │ │ │ ├── basic.ts │ │ │ │ ├── custom-color.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── word-cloud │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ ├── color-field.ts │ │ │ ├── douban-2020-movie.ts │ │ │ ├── image-mask-base64.ts │ │ │ ├── image-mask.ts │ │ │ ├── meta.json │ │ │ ├── placement-strategy.ts │ │ │ └── same-place.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── pie │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── legend-interaction.ts │ │ │ │ ├── meta.json │ │ │ │ ├── outer-label.ts │ │ │ │ ├── pie-custome-label.ts │ │ │ │ ├── pie-texture.ts │ │ │ │ ├── quarter-circle.ts │ │ │ │ └── spider-label.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── donut │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ ├── meta.json │ │ │ └── statistics.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── plugin │ │ ├── association │ │ │ ├── demo │ │ │ │ ├── association-filter.ts │ │ │ │ ├── association-highlight.ts │ │ │ │ ├── association-line.ts │ │ │ │ ├── association-pie.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── hill-column.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── custom-pattern │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── meta.json │ │ │ │ ├── pattern1.ts │ │ │ │ ├── pattern2.ts │ │ │ │ └── pattern3.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── custom-shape │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── bar-custom-shape.ts │ │ │ │ ├── conversion-bar-shape.ts │ │ │ │ ├── meta.json │ │ │ │ └── pie-custom-shape.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── facet │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── circle.ts │ │ │ │ ├── column.ts │ │ │ │ ├── list.ts │ │ │ │ ├── matrix.ts │ │ │ │ ├── meta.json │ │ │ │ ├── mirror.ts │ │ │ │ ├── rect.ts │ │ │ │ ├── tree-column.ts │ │ │ │ └── tree.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── multi-view │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── anomaly-detection-line-chart.ts │ │ │ │ ├── brush-filter-record.ts │ │ │ │ ├── combo-plot.ts │ │ │ │ ├── composite-funnel.ts │ │ │ │ ├── customized-stock.jsx │ │ │ │ ├── drinks.ts │ │ │ │ ├── meta.json │ │ │ │ ├── nest-pie.ts │ │ │ │ ├── range-area.ts │ │ │ │ ├── sales-analysis.ts │ │ │ │ └── series-columns.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── pattern │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── area-pattern.ts │ │ │ ├── bar-pattern.ts │ │ │ ├── donut-pattern.ts │ │ │ ├── group-column-pattern.ts │ │ │ ├── heatmap-cookie-pattern.ts │ │ │ ├── heatmap-pattern.ts │ │ │ ├── legend-marker-with-pattern.ts │ │ │ ├── liquid-pattern.ts │ │ │ ├── meta.json │ │ │ ├── pie-pattern.ts │ │ │ ├── stack-bar-pattern.ts │ │ │ └── stacked-group-column-pattern.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── progress-plots │ │ ├── bullet │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── color.ts │ │ │ │ ├── grouped.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── meta.json │ │ │ │ └── stacked.ts │ │ │ ├── design.en.md │ │ │ ├── design.zh.md │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── gauge │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── complex.ts │ │ │ │ ├── custom-color.ts │ │ │ │ ├── custom-indicator.ts │ │ │ │ ├── custom-indicator2.ts │ │ │ │ ├── custom-indicator3.ts │ │ │ │ ├── custom-meter-step.ts │ │ │ │ ├── meta.json │ │ │ │ ├── meter-gauge.ts │ │ │ │ ├── range-width.ts │ │ │ │ ├── simple-indicator.ts │ │ │ │ ├── single-gradient.ts │ │ │ │ └── tooltip-gauge.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── liquid │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ ├── custom.ts │ │ │ ├── diamond.ts │ │ │ ├── meta.json │ │ │ ├── outline-style.ts │ │ │ ├── pattern.ts │ │ │ ├── rect.ts │ │ │ └── style.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── relation-plots │ │ ├── chord │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── chord-population.ts │ │ │ │ ├── custom-tooltip.ts │ │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── sankey │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── alipay.ts │ │ │ ├── draggable.ts │ │ │ ├── energy.ts │ │ │ ├── meta.json │ │ │ ├── node-sort-sankey.ts │ │ │ └── set-state.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── rose │ │ ├── basic │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── inner-label.ts │ │ │ │ ├── interaction.ts │ │ │ │ ├── meta.json │ │ │ │ ├── rose-pattern.ts │ │ │ │ └── rose-state.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ ├── grouped │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── basic.ts │ │ │ │ ├── meta.json │ │ │ │ └── pattern.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── stacked │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── basic.ts │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ ├── scatter │ │ ├── bubble │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ │ ├── axis-right.ts │ │ │ │ ├── bubble-3d.ts │ │ │ │ ├── meta.json │ │ │ │ ├── quadrant-tooltip.ts │ │ │ │ └── quadrant.ts │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ │ └── scatter │ │ │ ├── API.en.md │ │ │ ├── API.zh.md │ │ │ ├── demo │ │ │ ├── color-mapping.ts │ │ │ ├── custom-shape.ts │ │ │ ├── label.ts │ │ │ ├── line.ts │ │ │ ├── mapping-color-and-shape.ts │ │ │ └── meta.json │ │ │ ├── index.en.md │ │ │ └── index.zh.md │ └── tiny │ │ ├── progress │ │ ├── API.en.md │ │ ├── API.zh.md │ │ ├── demo │ │ │ ├── meta.json │ │ │ ├── progress-style.ts │ │ │ └── progress.ts │ │ ├── index.en.md │ │ └── index.zh.md │ │ ├── ring-progress │ │ ├── API.en.md │ │ ├── API.zh.md │ │ ├── demo │ │ │ ├── meta.json │ │ │ ├── ring-progress-style.ts │ │ │ └── ring-progress.ts │ │ ├── index.en.md │ │ └── index.zh.md │ │ ├── tiny-area │ │ ├── API.en.md │ │ ├── API.zh.md │ │ ├── demo │ │ │ ├── area-annotation.ts │ │ │ ├── basic-area.ts │ │ │ ├── filled-area.ts │ │ │ ├── meta.json │ │ │ └── pattern.ts │ │ ├── index.en.md │ │ └── index.zh.md │ │ ├── tiny-column │ │ ├── API.en.md │ │ ├── API.zh.md │ │ ├── demo │ │ │ ├── basic-column.ts │ │ │ ├── column-annotation.ts │ │ │ ├── meta.json │ │ │ └── tiny-column-pattern.ts │ │ ├── index.en.md │ │ └── index.zh.md │ │ └── tiny-line │ │ ├── API.en.md │ │ ├── API.zh.md │ │ ├── demo │ │ ├── basic-line.ts │ │ ├── line-annotation.ts │ │ └── meta.json │ │ ├── index.en.md │ │ └── index.zh.md ├── package.json └── tsconfig.json ├── src ├── adaptor │ ├── brush.ts │ ├── common.ts │ ├── connected-area.ts │ ├── conversion-tag.ts │ ├── geometries │ │ ├── area.ts │ │ ├── base.ts │ │ ├── edge.ts │ │ ├── index.ts │ │ ├── interval.ts │ │ ├── line.ts │ │ ├── point.ts │ │ ├── polygon.ts │ │ ├── schema.ts │ │ └── violin.ts │ └── pattern.ts ├── constant.ts ├── core │ ├── adaptor.ts │ ├── global.ts │ ├── locale.ts │ └── plot.ts ├── index.ts ├── interactions │ ├── actions │ │ ├── drill-down.ts │ │ └── reset-button.ts │ ├── brush.ts │ ├── drag-move.ts │ └── drill-down.ts ├── lab.ts ├── locales │ ├── en_US.ts │ └── zh_CN.ts ├── plots │ ├── _template │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ └── types.ts │ ├── area │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── bar │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── bidirectional-bar │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── box │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── bullet │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── chord │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ └── types.ts │ ├── circle-packing │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── column │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── dual-axes │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── util │ │ │ ├── geometry.ts │ │ │ ├── legend.ts │ │ │ ├── option.ts │ │ │ └── render-sider.ts │ ├── facet │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── funnel │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── geometries │ │ │ ├── basic.ts │ │ │ ├── common.ts │ │ │ ├── compare.ts │ │ │ ├── dynamic-height.ts │ │ │ └── facet.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── funnel-conversion-tag.ts │ │ │ └── index.ts │ │ └── types.ts │ ├── gauge │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── shapes │ │ │ ├── indicator.ts │ │ │ └── meter-gauge.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── heatmap │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── shapes │ │ │ ├── circle.ts │ │ │ └── square.ts │ │ └── types.ts │ ├── histogram │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ └── types.ts │ ├── line │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── index.ts │ │ │ └── marker-active.ts │ │ └── types.ts │ ├── liquid │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── shapes │ │ │ └── liquid.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── mix │ │ ├── adaptor.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── association.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── pie │ │ ├── adaptor.ts │ │ ├── contants.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── actions │ │ │ │ ├── legend-active.ts │ │ │ │ └── statistic-active.ts │ │ │ ├── index.ts │ │ │ └── util.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── progress │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── radar │ │ ├── adaptor.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── index.ts │ │ │ └── radar-tooltip-action.ts │ │ └── types.ts │ ├── radial-bar │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── ring-progress │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── rose │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ └── types.ts │ ├── sankey │ │ ├── adaptor.ts │ │ ├── circle.ts │ │ ├── constant.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── actions │ │ │ │ └── node-drag.ts │ │ │ ├── index.ts │ │ │ └── node-draggable.ts │ │ ├── layout.ts │ │ ├── sankey │ │ │ ├── align.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ └── sankey.ts │ │ └── types.ts │ ├── scatter │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ └── index.ts │ │ ├── types.ts │ │ └── util.ts │ ├── stock │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── sunburst │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tiny-area │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── tiny-column │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── tiny-line │ │ ├── adaptor.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── treemap │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── venn │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── actions │ │ │ │ ├── active.ts │ │ │ │ ├── highlight.ts │ │ │ │ └── selected.ts │ │ │ ├── index.ts │ │ │ └── util.ts │ │ ├── label.ts │ │ ├── layout │ │ │ ├── circleintersection.ts │ │ │ ├── diagram.ts │ │ │ └── layout.ts │ │ ├── shape.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── violin │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── waterfall │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── shape.ts │ │ ├── types.ts │ │ └── utils.ts │ └── word-cloud │ │ ├── adaptor.ts │ │ ├── constant.ts │ │ ├── index.ts │ │ ├── shapes │ │ └── word-cloud.ts │ │ ├── types.ts │ │ └── utils.ts ├── plugin │ └── index.ts ├── types │ ├── animation.ts │ ├── annotation.ts │ ├── attr.ts │ ├── axis.ts │ ├── button.ts │ ├── common.ts │ ├── coordinate.ts │ ├── drill-down.ts │ ├── index.ts │ ├── interaction.ts │ ├── label.ts │ ├── legend.ts │ ├── locale.ts │ ├── meta.ts │ ├── pattern.ts │ ├── relation-data.ts │ ├── scrollbar.ts │ ├── slider.ts │ ├── state.ts │ ├── statistic.ts │ └── tooltip.ts └── utils │ ├── color │ └── blend.ts │ ├── context.ts │ ├── conversion.ts │ ├── data.ts │ ├── deep-assign.ts │ ├── dom.ts │ ├── flow.ts │ ├── geometry.ts │ ├── hierarchy │ ├── pack.ts │ ├── partition.ts │ ├── treemap.ts │ ├── types.ts │ └── util.ts │ ├── index.ts │ ├── invariant.ts │ ├── kebab-case.ts │ ├── label.ts │ ├── matrix.ts │ ├── measure-text.ts │ ├── number.ts │ ├── padding.ts │ ├── path.ts │ ├── pattern │ ├── dot.ts │ ├── index.ts │ ├── line.ts │ ├── square.ts │ └── util.ts │ ├── pick.ts │ ├── statistic.ts │ ├── template.ts │ ├── tooltip.ts │ ├── transform │ ├── chord.ts │ ├── histogram.ts │ ├── percent.ts │ ├── quantile.ts │ ├── sankey.ts │ └── word-cloud.ts │ └── view.ts ├── tsconfig.json └── webpack.config.js /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | test 4 | build/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/emoji-helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/workflows/emoji-helper.yml -------------------------------------------------------------------------------- /.github/workflows/release-notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.github/workflows/release-notify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintmdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.lintmdrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | stats.json 2 | .cache 3 | dist 4 | .umi 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/CONTRIBUTING.zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/README.en-US.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/bugs/bar-axis-label-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/bar-axis-label-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/bar-changedata-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/bar-changedata-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1174-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1174-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1245-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1245-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1684-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1684-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1708-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1708-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1754-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1754-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1757-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1757-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1758-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1758-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1761-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1761-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1836-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1836-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1870-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1870-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1882-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1882-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1909-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1909-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1944-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1944-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-1970-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-1970-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2015-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2015-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2021-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2021-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2054-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2054-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2064-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2064-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2078-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2078-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2080-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2080-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2096-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2096-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2105-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2105-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2111-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2111-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2116-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2116-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2122-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2122-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2124-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2124-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2161-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2161-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2180-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2180-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2203-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2203-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2220-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2220-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2229-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2229-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2236-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2236-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2260-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2260-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2264-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2264-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2267-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2267-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2303-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2303-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2352-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2352-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2353-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2353-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2375-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2375-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2394-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2394-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2422-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2422-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2502-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2502-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2572-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2572-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2573-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2573-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2616-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2616-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2636-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2636-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2651-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2651-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2734-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2734-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2749-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2749-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2755-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2755-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2783-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2783-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2881-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2881-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2906-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2906-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2908-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2908-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-292-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-292-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-2930-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-2930-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-294-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-294-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3012-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3012-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3084-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3084-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3085-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3085-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3200-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3200-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3262-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3262-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3367-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3367-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-3804-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-3804-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-968-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-968-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/issue-charts-367-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/issue-charts-367-spec.ts -------------------------------------------------------------------------------- /__tests__/bugs/pie-statistic-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/bugs/pie-statistic-spec.ts -------------------------------------------------------------------------------- /__tests__/data/antv-star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/antv-star.ts -------------------------------------------------------------------------------- /__tests__/data/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/area.ts -------------------------------------------------------------------------------- /__tests__/data/baby-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/baby-names.ts -------------------------------------------------------------------------------- /__tests__/data/basic-heatmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/basic-heatmap.ts -------------------------------------------------------------------------------- /__tests__/data/bi-directional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/bi-directional.ts -------------------------------------------------------------------------------- /__tests__/data/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/box.ts -------------------------------------------------------------------------------- /__tests__/data/bullet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/bullet.ts -------------------------------------------------------------------------------- /__tests__/data/chord-population.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/chord-population.ts -------------------------------------------------------------------------------- /__tests__/data/circle-packing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/circle-packing.ts -------------------------------------------------------------------------------- /__tests__/data/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/common.ts -------------------------------------------------------------------------------- /__tests__/data/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/conversion.ts -------------------------------------------------------------------------------- /__tests__/data/country-economy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/country-economy.ts -------------------------------------------------------------------------------- /__tests__/data/fireworks-sales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/fireworks-sales.ts -------------------------------------------------------------------------------- /__tests__/data/gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/gender.ts -------------------------------------------------------------------------------- /__tests__/data/global-oil-new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/global-oil-new.ts -------------------------------------------------------------------------------- /__tests__/data/heatmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/heatmap.ts -------------------------------------------------------------------------------- /__tests__/data/histogram-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/histogram-data.ts -------------------------------------------------------------------------------- /__tests__/data/income.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/income.ts -------------------------------------------------------------------------------- /__tests__/data/life-expectancy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/life-expectancy.ts -------------------------------------------------------------------------------- /__tests__/data/mix-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/mix-data.ts -------------------------------------------------------------------------------- /__tests__/data/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/mobile.ts -------------------------------------------------------------------------------- /__tests__/data/nintendo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/nintendo.ts -------------------------------------------------------------------------------- /__tests__/data/parallel-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/parallel-set.ts -------------------------------------------------------------------------------- /__tests__/data/party-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/party-support.ts -------------------------------------------------------------------------------- /__tests__/data/pv-uv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/pv-uv.ts -------------------------------------------------------------------------------- /__tests__/data/radar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/radar.ts -------------------------------------------------------------------------------- /__tests__/data/sales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/sales.ts -------------------------------------------------------------------------------- /__tests__/data/sankey-energy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/sankey-energy.ts -------------------------------------------------------------------------------- /__tests__/data/stock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/stock.ts -------------------------------------------------------------------------------- /__tests__/data/sunburst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/sunburst.ts -------------------------------------------------------------------------------- /__tests__/data/treemap-nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/treemap-nest.ts -------------------------------------------------------------------------------- /__tests__/data/treemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/treemap.ts -------------------------------------------------------------------------------- /__tests__/data/violin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/data/violin.ts -------------------------------------------------------------------------------- /__tests__/unit/adaptor/common-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/adaptor/common-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/adaptor/pattern-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/adaptor/pattern-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/core/global-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/core/global-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/core/index-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/core/index-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/core/locale-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/core/locale-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/core/pie-state-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/core/pie-state-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/index-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/index-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/lab-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/lab-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/axis-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/axis-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/index-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/index-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/label-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/label-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/line-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/line-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/point-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/point-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/shape-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/shape-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/stack-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/stack-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/state-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/state-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/area/style-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/area/style-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/bar/axis-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/bar/axis-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/bar/index-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/bar/index-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/bar/label-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/bar/label-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/bar/legend-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/bar/legend-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/box/axis-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/box/axis-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plots/pie/data-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plots/pie/data-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plugin/index-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plugin/index-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/plugin/step-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/plugin/step-line.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/data-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/data-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/dom-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/dom-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/flow-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/flow-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/geometry-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/geometry-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/get-meta-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/get-meta-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/matrix-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/matrix-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/number-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/number-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/padding-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/padding-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/path-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/path-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/pick-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/pick-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/template-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/template-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/tooltip-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/tooltip-spec.ts -------------------------------------------------------------------------------- /__tests__/unit/utils/view-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/unit/utils/view-spec.ts -------------------------------------------------------------------------------- /__tests__/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/utils/delay.ts -------------------------------------------------------------------------------- /__tests__/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/utils/dom.ts -------------------------------------------------------------------------------- /__tests__/utils/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/utils/event.ts -------------------------------------------------------------------------------- /__tests__/utils/getPixelColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/utils/getPixelColor.ts -------------------------------------------------------------------------------- /__tests__/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/__tests__/utils/number.ts -------------------------------------------------------------------------------- /api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/api-extractor.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/manual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/scripts/manual.ts -------------------------------------------------------------------------------- /site/.dumi/github-markdown-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/.dumi/github-markdown-light.css -------------------------------------------------------------------------------- /site/.dumi/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/.dumi/global.ts -------------------------------------------------------------------------------- /site/.dumi/prism-one-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/.dumi/prism-one-light.css -------------------------------------------------------------------------------- /site/.dumi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/.dumi/style.css -------------------------------------------------------------------------------- /site/.dumirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/.dumirc.ts -------------------------------------------------------------------------------- /site/CNAME: -------------------------------------------------------------------------------- 1 | g2plot.antv.vision 2 | -------------------------------------------------------------------------------- /site/docs/api/components/axis.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/axis.en.md -------------------------------------------------------------------------------- /site/docs/api/components/axis.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/axis.zh.md -------------------------------------------------------------------------------- /site/docs/api/components/label.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/label.en.md -------------------------------------------------------------------------------- /site/docs/api/components/label.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/label.zh.md -------------------------------------------------------------------------------- /site/docs/api/components/legend.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/legend.en.md -------------------------------------------------------------------------------- /site/docs/api/components/legend.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/legend.zh.md -------------------------------------------------------------------------------- /site/docs/api/components/slider.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/slider.en.md -------------------------------------------------------------------------------- /site/docs/api/components/slider.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/components/slider.zh.md -------------------------------------------------------------------------------- /site/docs/api/graphic-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/graphic-style.en.md -------------------------------------------------------------------------------- /site/docs/api/graphic-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/graphic-style.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/animation.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/animation.en.md -------------------------------------------------------------------------------- /site/docs/api/options/animation.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/animation.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/events.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/events.en.md -------------------------------------------------------------------------------- /site/docs/api/options/events.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/events.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/g2plot.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/g2plot.en.md -------------------------------------------------------------------------------- /site/docs/api/options/g2plot.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/g2plot.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/meta.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/meta.en.md -------------------------------------------------------------------------------- /site/docs/api/options/meta.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/meta.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/pattern.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/pattern.en.md -------------------------------------------------------------------------------- /site/docs/api/options/pattern.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/pattern.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/shape.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/shape.en.md -------------------------------------------------------------------------------- /site/docs/api/options/shape.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/shape.zh.md -------------------------------------------------------------------------------- /site/docs/api/options/theme.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/theme.en.md -------------------------------------------------------------------------------- /site/docs/api/options/theme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/options/theme.zh.md -------------------------------------------------------------------------------- /site/docs/api/plot-api.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plot-api.en.md -------------------------------------------------------------------------------- /site/docs/api/plot-api.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plot-api.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/area.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/area.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/area.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/area.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/bar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/bar.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/bar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/bar.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/box.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/box.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/box.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/box.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/bullet.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/bullet.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/bullet.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/bullet.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/column.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/column.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/column.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/column.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/dual-axes.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/dual-axes.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/dual-axes.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/dual-axes.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/funnel.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/funnel.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/funnel.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/funnel.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/gauge.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/gauge.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/gauge.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/gauge.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/heatmap.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/heatmap.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/heatmap.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/heatmap.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/histogram.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/histogram.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/histogram.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/histogram.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/line.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/line.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/line.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/line.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/liquid.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/liquid.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/liquid.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/liquid.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/pie.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/pie.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/pie.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/pie.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/progress.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/progress.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/progress.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/progress.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/radar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/radar.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/radar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/radar.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/radial-bar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/radial-bar.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/radial-bar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/radial-bar.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/rose.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/rose.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/rose.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/rose.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/sankey.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/sankey.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/sankey.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/sankey.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/scatter.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/scatter.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/scatter.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/scatter.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/stock.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/stock.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/stock.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/stock.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/sunburst.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/sunburst.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/sunburst.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/sunburst.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-area.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-area.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-area.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-area.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-column.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-column.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-column.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-column.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-line.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-line.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/tiny-line.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/tiny-line.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/treemap.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/treemap.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/treemap.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/treemap.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/venn.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/venn.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/venn.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/venn.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/violin.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/violin.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/violin.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/violin.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/waterfall.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/waterfall.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/waterfall.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/waterfall.zh.md -------------------------------------------------------------------------------- /site/docs/api/plots/word-cloud.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/word-cloud.en.md -------------------------------------------------------------------------------- /site/docs/api/plots/word-cloud.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/api/plots/word-cloud.zh.md -------------------------------------------------------------------------------- /site/docs/common/animate-option.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/animate-option.en.md -------------------------------------------------------------------------------- /site/docs/common/animate-option.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/animate-option.zh.md -------------------------------------------------------------------------------- /site/docs/common/annotations.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/annotations.en.md -------------------------------------------------------------------------------- /site/docs/common/annotations.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/annotations.zh.md -------------------------------------------------------------------------------- /site/docs/common/axis.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/axis.en.md -------------------------------------------------------------------------------- /site/docs/common/axis.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/axis.zh.md -------------------------------------------------------------------------------- /site/docs/common/bar-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/bar-style.en.md -------------------------------------------------------------------------------- /site/docs/common/bar-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/bar-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/brush.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/brush.en.md -------------------------------------------------------------------------------- /site/docs/common/brush.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/brush.zh.md -------------------------------------------------------------------------------- /site/docs/common/chart-methods.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chart-methods.en.md -------------------------------------------------------------------------------- /site/docs/common/chart-methods.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chart-methods.zh.md -------------------------------------------------------------------------------- /site/docs/common/chart-options.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chart-options.en.md -------------------------------------------------------------------------------- /site/docs/common/chart-options.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chart-options.zh.md -------------------------------------------------------------------------------- /site/docs/common/chord.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chord.en.md -------------------------------------------------------------------------------- /site/docs/common/chord.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/chord.zh.md -------------------------------------------------------------------------------- /site/docs/common/color.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/color.en.md -------------------------------------------------------------------------------- /site/docs/common/color.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/color.zh.md -------------------------------------------------------------------------------- /site/docs/common/column-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/column-style.en.md -------------------------------------------------------------------------------- /site/docs/common/column-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/column-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/common-iview.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/common-iview.en.md -------------------------------------------------------------------------------- /site/docs/common/common-iview.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/common-iview.zh.md -------------------------------------------------------------------------------- /site/docs/common/component-tiny.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/component-tiny.en.md -------------------------------------------------------------------------------- /site/docs/common/component-tiny.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/component-tiny.zh.md -------------------------------------------------------------------------------- /site/docs/common/component.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/component.en.md -------------------------------------------------------------------------------- /site/docs/common/component.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/component.zh.md -------------------------------------------------------------------------------- /site/docs/common/connected-area.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/connected-area.en.md -------------------------------------------------------------------------------- /site/docs/common/connected-area.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/connected-area.zh.md -------------------------------------------------------------------------------- /site/docs/common/conversion-tag.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/conversion-tag.en.md -------------------------------------------------------------------------------- /site/docs/common/conversion-tag.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/conversion-tag.zh.md -------------------------------------------------------------------------------- /site/docs/common/coordinate.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/coordinate.en.md -------------------------------------------------------------------------------- /site/docs/common/coordinate.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/coordinate.zh.md -------------------------------------------------------------------------------- /site/docs/common/data.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/data.en.md -------------------------------------------------------------------------------- /site/docs/common/data.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/data.zh.md -------------------------------------------------------------------------------- /site/docs/common/drill-down.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/drill-down.en.md -------------------------------------------------------------------------------- /site/docs/common/drill-down.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/drill-down.zh.md -------------------------------------------------------------------------------- /site/docs/common/events.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/events.en.md -------------------------------------------------------------------------------- /site/docs/common/events.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/events.zh.md -------------------------------------------------------------------------------- /site/docs/common/facet-title.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/facet-title.en.md -------------------------------------------------------------------------------- /site/docs/common/facet-title.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/facet-title.zh.md -------------------------------------------------------------------------------- /site/docs/common/geometry-cfg.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/geometry-cfg.en.md -------------------------------------------------------------------------------- /site/docs/common/geometry-cfg.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/geometry-cfg.zh.md -------------------------------------------------------------------------------- /site/docs/common/interactions.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/interactions.en.md -------------------------------------------------------------------------------- /site/docs/common/interactions.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/interactions.zh.md -------------------------------------------------------------------------------- /site/docs/common/label.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/label.en.md -------------------------------------------------------------------------------- /site/docs/common/label.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/label.zh.md -------------------------------------------------------------------------------- /site/docs/common/legend-cfg.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/legend-cfg.en.md -------------------------------------------------------------------------------- /site/docs/common/legend-cfg.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/legend-cfg.zh.md -------------------------------------------------------------------------------- /site/docs/common/legend.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/legend.en.md -------------------------------------------------------------------------------- /site/docs/common/legend.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/legend.zh.md -------------------------------------------------------------------------------- /site/docs/common/line-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/line-style.en.md -------------------------------------------------------------------------------- /site/docs/common/line-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/line-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/marker.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/marker.en.md -------------------------------------------------------------------------------- /site/docs/common/marker.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/marker.zh.md -------------------------------------------------------------------------------- /site/docs/common/meta.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/meta.en.md -------------------------------------------------------------------------------- /site/docs/common/meta.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/meta.zh.md -------------------------------------------------------------------------------- /site/docs/common/pattern.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/pattern.en.md -------------------------------------------------------------------------------- /site/docs/common/pattern.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/pattern.zh.md -------------------------------------------------------------------------------- /site/docs/common/plot-cfg.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/plot-cfg.en.md -------------------------------------------------------------------------------- /site/docs/common/plot-cfg.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/plot-cfg.zh.md -------------------------------------------------------------------------------- /site/docs/common/point-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/point-style.en.md -------------------------------------------------------------------------------- /site/docs/common/point-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/point-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/scrollbar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/scrollbar.en.md -------------------------------------------------------------------------------- /site/docs/common/scrollbar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/scrollbar.zh.md -------------------------------------------------------------------------------- /site/docs/common/shape-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/shape-style.en.md -------------------------------------------------------------------------------- /site/docs/common/shape-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/shape-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/slider.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/slider.en.md -------------------------------------------------------------------------------- /site/docs/common/slider.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/slider.zh.md -------------------------------------------------------------------------------- /site/docs/common/state-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/state-style.en.md -------------------------------------------------------------------------------- /site/docs/common/state-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/state-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/statistic.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/statistic.en.md -------------------------------------------------------------------------------- /site/docs/common/statistic.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/statistic.zh.md -------------------------------------------------------------------------------- /site/docs/common/text-style.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/text-style.en.md -------------------------------------------------------------------------------- /site/docs/common/text-style.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/text-style.zh.md -------------------------------------------------------------------------------- /site/docs/common/theme.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/theme.en.md -------------------------------------------------------------------------------- /site/docs/common/theme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/theme.zh.md -------------------------------------------------------------------------------- /site/docs/common/tooltip.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/tooltip.en.md -------------------------------------------------------------------------------- /site/docs/common/tooltip.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/tooltip.zh.md -------------------------------------------------------------------------------- /site/docs/common/xy-field.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/xy-field.en.md -------------------------------------------------------------------------------- /site/docs/common/xy-field.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/common/xy-field.zh.md -------------------------------------------------------------------------------- /site/docs/manual/contact.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/contact.en.md -------------------------------------------------------------------------------- /site/docs/manual/contact.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/contact.zh.md -------------------------------------------------------------------------------- /site/docs/manual/faq.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/faq.en.md -------------------------------------------------------------------------------- /site/docs/manual/faq.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/faq.zh.md -------------------------------------------------------------------------------- /site/docs/manual/introduction.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/introduction.en.md -------------------------------------------------------------------------------- /site/docs/manual/introduction.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/introduction.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/area.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/area.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/area.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/area.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/bar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/bar.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/bar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/bar.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/bullet.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/bullet.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/bullet.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/bullet.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/column.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/column.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/column.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/column.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/facet.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/facet.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/facet.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/facet.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/funnel.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/funnel.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/funnel.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/funnel.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/gauge.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/gauge.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/gauge.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/gauge.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/heatmap.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/heatmap.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/heatmap.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/heatmap.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/line.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/line.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/line.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/line.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/liquid.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/liquid.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/liquid.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/liquid.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/pie.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/pie.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/pie.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/pie.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/radar.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/radar.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/radar.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/radar.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/scatter.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/scatter.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/scatter.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/scatter.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/venn.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/venn.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/venn.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/venn.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plots/violin.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/violin.en.md -------------------------------------------------------------------------------- /site/docs/manual/plots/violin.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plots/violin.zh.md -------------------------------------------------------------------------------- /site/docs/manual/plugin.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plugin.en.md -------------------------------------------------------------------------------- /site/docs/manual/plugin.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/plugin.zh.md -------------------------------------------------------------------------------- /site/docs/manual/upgrade.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/upgrade.en.md -------------------------------------------------------------------------------- /site/docs/manual/upgrade.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/manual/upgrade.zh.md -------------------------------------------------------------------------------- /site/docs/styles/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/styles/component.md -------------------------------------------------------------------------------- /site/docs/styles/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/docs/styles/style.md -------------------------------------------------------------------------------- /site/examples/area/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/area/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/area/basic/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/basic/design.en.md -------------------------------------------------------------------------------- /site/examples/area/basic/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/basic/design.zh.md -------------------------------------------------------------------------------- /site/examples/area/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basic Area 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/area/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 基础面积图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/area/percent/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/percent/API.en.md -------------------------------------------------------------------------------- /site/examples/area/percent/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/percent/API.zh.md -------------------------------------------------------------------------------- /site/examples/area/percent/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Percented Area 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/area/percent/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 百分比面积图 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/area/stacked/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/stacked/API.en.md -------------------------------------------------------------------------------- /site/examples/area/stacked/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/area/stacked/API.zh.md -------------------------------------------------------------------------------- /site/examples/area/stacked/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacked Area 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/area/stacked/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 堆积面积图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/bar/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/bar/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/bar/basic/demo/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/demo/basic.ts -------------------------------------------------------------------------------- /site/examples/bar/basic/demo/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/demo/color.ts -------------------------------------------------------------------------------- /site/examples/bar/basic/demo/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/demo/shape.ts -------------------------------------------------------------------------------- /site/examples/bar/basic/demo/width.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/demo/width.ts -------------------------------------------------------------------------------- /site/examples/bar/basic/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/design.en.md -------------------------------------------------------------------------------- /site/examples/bar/basic/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/design.zh.md -------------------------------------------------------------------------------- /site/examples/bar/basic/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/index.en.md -------------------------------------------------------------------------------- /site/examples/bar/basic/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/basic/index.zh.md -------------------------------------------------------------------------------- /site/examples/bar/grouped/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/grouped/API.en.md -------------------------------------------------------------------------------- /site/examples/bar/grouped/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/grouped/API.zh.md -------------------------------------------------------------------------------- /site/examples/bar/grouped/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grouped Bar 3 | order: 3 4 | --- -------------------------------------------------------------------------------- /site/examples/bar/grouped/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/grouped/index.zh.md -------------------------------------------------------------------------------- /site/examples/bar/percent/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/percent/API.en.md -------------------------------------------------------------------------------- /site/examples/bar/percent/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/percent/API.zh.md -------------------------------------------------------------------------------- /site/examples/bar/percent/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Percent Bar 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/bar/percent/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 百分比条形图 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/bar/range/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/range/API.en.md -------------------------------------------------------------------------------- /site/examples/bar/range/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/range/API.zh.md -------------------------------------------------------------------------------- /site/examples/bar/range/demo/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/range/demo/basic.ts -------------------------------------------------------------------------------- /site/examples/bar/range/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/range/design.en.md -------------------------------------------------------------------------------- /site/examples/bar/range/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/range/design.zh.md -------------------------------------------------------------------------------- /site/examples/bar/range/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Range Bar 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/bar/range/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 区间条形图 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/bar/stacked/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/stacked/API.en.md -------------------------------------------------------------------------------- /site/examples/bar/stacked/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/stacked/API.zh.md -------------------------------------------------------------------------------- /site/examples/bar/stacked/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacked Bar 3 | order: 1 4 | --- -------------------------------------------------------------------------------- /site/examples/bar/stacked/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/bar/stacked/index.zh.md -------------------------------------------------------------------------------- /site/examples/case/advanced/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Advanced usages 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/advanced/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 高级用法 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/customize/design.en.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/case/customize/design.zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/case/customize/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Custom Charts 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/customize/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 自定义图表 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/interactions/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Advanced interactions 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/interactions/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 高级交互 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/statistical-scenario/API.en.md: -------------------------------------------------------------------------------- 1 | 统计图表场景案例暂无 API,可以查看 **Design Guide** 了解 2 | -------------------------------------------------------------------------------- /site/examples/case/statistical-scenario/API.zh.md: -------------------------------------------------------------------------------- 1 | 统计图表场景案例暂无 API,可以查看 **设计指引** 了解 2 | -------------------------------------------------------------------------------- /site/examples/case/statistical-scenario/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Statistical Scenario 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/case/statistical-scenario/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 统计场景 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/column/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/column/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/column/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/column/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basic Column 3 | order: 0 4 | --- -------------------------------------------------------------------------------- /site/examples/column/grouped/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grouped Column 3 | order: 3 4 | --- -------------------------------------------------------------------------------- /site/examples/column/percent/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Percent Column 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/percent/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 百分比柱状图 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/range/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/column/range/API.en.md -------------------------------------------------------------------------------- /site/examples/column/range/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/column/range/API.zh.md -------------------------------------------------------------------------------- /site/examples/column/range/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Range column 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/range/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 区间柱状图 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/scenario/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Scenario Column 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/scenario/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 场景柱状图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/column/stacked/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacked Column 3 | order: 1 4 | --- -------------------------------------------------------------------------------- /site/examples/component/annotation/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Annotations 3 | order: 6 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/annotation/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图表标注 - Annotations 3 | order: 6 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/label/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Label 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/label/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 数据标签 - Label 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/legend/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Legend 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/legend/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图例 - Legend 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/tooltip/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tooltip 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/component/tooltip/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 悬浮提示 - Tooltip 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/column-line/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Column Line 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/column-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 柱线混合图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/dual-line/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dual Line 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/dual-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 双折线图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/grouped-column-line/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grouped Column Line 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/grouped-column-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 分组柱 + 折线混合图表 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/grouped-stacked-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 堆叠分组柱 + 折线混合图表 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/stacked-column-line/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacked Column + Line 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dual-axes/stacked-column-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 堆叠柱 + 折线混合图表 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/animation/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Animation 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/animation/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 动画 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ChangeData 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 动态更新数据 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/brush/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Brush 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/dynamic-plots/brush/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Brush 刷选 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/events/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Plot Events 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/events/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图表事件 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/state/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/general/state/API.en.md -------------------------------------------------------------------------------- /site/examples/general/state/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/general/state/API.zh.md -------------------------------------------------------------------------------- /site/examples/general/state/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: State Setting 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/state/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 状态量设置 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/theme/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/general/theme/API.en.md -------------------------------------------------------------------------------- /site/examples/general/theme/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/general/theme/API.zh.md -------------------------------------------------------------------------------- /site/examples/general/theme/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Theme Setting 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/general/theme/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 主题设置 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/heatmap/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/heatmap/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/heatmap/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/heatmap/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/heatmap/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Heatmap 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/heatmap/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 热力图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/heatmap/density/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Density Heatmap 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/heatmap/density/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 密度热力图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/line/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/line/basic/demo/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/basic/demo/line.ts -------------------------------------------------------------------------------- /site/examples/line/basic/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/basic/design.en.md -------------------------------------------------------------------------------- /site/examples/line/basic/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/basic/design.zh.md -------------------------------------------------------------------------------- /site/examples/line/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basic Line 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 基础折线图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/multiple/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/multiple/API.en.md -------------------------------------------------------------------------------- /site/examples/line/multiple/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/multiple/API.zh.md -------------------------------------------------------------------------------- /site/examples/line/multiple/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Multi Line 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/multiple/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 多折线图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/scenario/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/scenario/API.en.md -------------------------------------------------------------------------------- /site/examples/line/scenario/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/scenario/API.zh.md -------------------------------------------------------------------------------- /site/examples/line/scenario/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Scenario Line 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/scenario/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 场景折线图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/step/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/step/API.en.md -------------------------------------------------------------------------------- /site/examples/line/step/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/step/API.zh.md -------------------------------------------------------------------------------- /site/examples/line/step/demo/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/step/demo/line.ts -------------------------------------------------------------------------------- /site/examples/line/step/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/step/design.en.md -------------------------------------------------------------------------------- /site/examples/line/step/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/line/step/design.zh.md -------------------------------------------------------------------------------- /site/examples/line/step/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Step Line 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/line/step/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 阶梯折线图 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/bidirectional-bar/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BidirectionalBar 3 | order: 8 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/bidirectional-bar/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 对称条形图 3 | order: 8 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/box/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Box 3 | order: 11 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/box/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 箱型图 3 | order: 11 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/circle-packing/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Circle Packing 3 | order: 40 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/circle-packing/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Circle Packing 3 | order: 40 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/funnel/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Funnel 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/funnel/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 漏斗图 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/histogram/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Histogram 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/histogram/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 直方图 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/radar/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Radar 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/radar/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 雷达图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/radial-bar/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Radial-Bar 3 | order: 9 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/radial-bar/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 玉珏图 3 | order: 9 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/stock/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stock 3 | order: 12 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/stock/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 股票图 3 | order: 12 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/sunburst/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sunburst 3 | order: 7 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/sunburst/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 旭日图 3 | order: 7 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/treemap/design.en.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/more-plots/treemap/design.zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/more-plots/treemap/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Treemap 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/treemap/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 矩形树图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/venn/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Venn 3 | order: 12 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/venn/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 韦恩图 3 | order: 12 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/violin/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Violin 3 | order: 11 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/violin/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 小提琴图 3 | order: 11 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/waterfall/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Waterfall 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/waterfall/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 瀑布图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/more-plots/word-cloud/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 词云图 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/pie/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/pie/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/pie/basic/demo/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/basic/demo/basic.ts -------------------------------------------------------------------------------- /site/examples/pie/basic/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/basic/design.en.md -------------------------------------------------------------------------------- /site/examples/pie/basic/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/basic/design.zh.md -------------------------------------------------------------------------------- /site/examples/pie/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pie 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/pie/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 饼图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/pie/donut/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/donut/API.en.md -------------------------------------------------------------------------------- /site/examples/pie/donut/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/donut/API.zh.md -------------------------------------------------------------------------------- /site/examples/pie/donut/demo/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/donut/demo/basic.ts -------------------------------------------------------------------------------- /site/examples/pie/donut/design.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/donut/design.en.md -------------------------------------------------------------------------------- /site/examples/pie/donut/design.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/pie/donut/design.zh.md -------------------------------------------------------------------------------- /site/examples/pie/donut/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Donut 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/pie/donut/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 环图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/association/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Association Plots 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/association/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图表联动 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/basic/API.en.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/plugin/basic/API.zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/plugin/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Custom Plots 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 自定义图形 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-pattern/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Custom Pattern 3 | order: 6 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-pattern/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 自定义 Pattern 图案 3 | order: 6 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-shape/API.en.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-shape/API.zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-shape/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Custom Shape 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/custom-shape/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 自定义 Shape 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/facet/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/plugin/facet/API.en.md -------------------------------------------------------------------------------- /site/examples/plugin/facet/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/plugin/facet/API.zh.md -------------------------------------------------------------------------------- /site/examples/plugin/facet/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Facet Plot 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/facet/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 分面图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/multi-view/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Multi View Plot 🔥 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/multi-view/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 多图层图表 🔥 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/pattern/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pattern 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/plugin/pattern/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图案 - Pattern 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/bullet/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bullet 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/bullet/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 子弹图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/gauge/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gauge 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/gauge/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 仪表盘 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/liquid/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Liquid 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/progress-plots/liquid/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 水波图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/relation-plots/chord/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 弦图 3 | order: 28 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/relation-plots/sankey/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sankey 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/relation-plots/sankey/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 桑基图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/basic/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/basic/API.en.md -------------------------------------------------------------------------------- /site/examples/rose/basic/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/basic/API.zh.md -------------------------------------------------------------------------------- /site/examples/rose/basic/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basic Rose 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/basic/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 基础玫瑰图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/grouped/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/grouped/API.en.md -------------------------------------------------------------------------------- /site/examples/rose/grouped/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/grouped/API.zh.md -------------------------------------------------------------------------------- /site/examples/rose/grouped/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grouped Rose 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/grouped/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 分组玫瑰图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/stacked/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/stacked/API.en.md -------------------------------------------------------------------------------- /site/examples/rose/stacked/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/rose/stacked/API.zh.md -------------------------------------------------------------------------------- /site/examples/rose/stacked/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacked Rose 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/rose/stacked/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 堆叠玫瑰图 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/scatter/bubble/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bubble 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/scatter/bubble/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 气泡图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/scatter/scatter/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Scatter 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/scatter/scatter/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 散点图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/progress/API.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/tiny/progress/API.en.md -------------------------------------------------------------------------------- /site/examples/tiny/progress/API.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/examples/tiny/progress/API.zh.md -------------------------------------------------------------------------------- /site/examples/tiny/progress/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Progress 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/progress/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 进度条图 3 | order: 3 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/ring-progress/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ring Progress 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/ring-progress/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 进度环图 3 | order: 4 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-area/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tiny Area 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-area/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 迷你面积图 3 | order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-column/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tiny Column 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-column/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 迷你柱形图 3 | order: 2 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-line/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tiny Line 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/examples/tiny/tiny-line/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 迷你折线图 3 | order: 0 4 | --- 5 | -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/package.json -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /src/adaptor/brush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/brush.ts -------------------------------------------------------------------------------- /src/adaptor/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/common.ts -------------------------------------------------------------------------------- /src/adaptor/connected-area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/connected-area.ts -------------------------------------------------------------------------------- /src/adaptor/conversion-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/conversion-tag.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/area.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/base.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/edge.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/index.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/interval.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/line.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/point.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/polygon.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/schema.ts -------------------------------------------------------------------------------- /src/adaptor/geometries/violin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/geometries/violin.ts -------------------------------------------------------------------------------- /src/adaptor/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/adaptor/pattern.ts -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/core/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/core/adaptor.ts -------------------------------------------------------------------------------- /src/core/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/core/global.ts -------------------------------------------------------------------------------- /src/core/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/core/locale.ts -------------------------------------------------------------------------------- /src/core/plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/core/plot.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interactions/brush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/interactions/brush.ts -------------------------------------------------------------------------------- /src/interactions/drag-move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/interactions/drag-move.ts -------------------------------------------------------------------------------- /src/interactions/drill-down.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/interactions/drill-down.ts -------------------------------------------------------------------------------- /src/lab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/lab.ts -------------------------------------------------------------------------------- /src/locales/en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/locales/en_US.ts -------------------------------------------------------------------------------- /src/locales/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/locales/zh_CN.ts -------------------------------------------------------------------------------- /src/plots/_template/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/_template/adaptor.ts -------------------------------------------------------------------------------- /src/plots/_template/constant.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plots/_template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/_template/index.ts -------------------------------------------------------------------------------- /src/plots/_template/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/_template/types.ts -------------------------------------------------------------------------------- /src/plots/area/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/area/adaptor.ts -------------------------------------------------------------------------------- /src/plots/area/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/area/constants.ts -------------------------------------------------------------------------------- /src/plots/area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/area/index.ts -------------------------------------------------------------------------------- /src/plots/area/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/area/types.ts -------------------------------------------------------------------------------- /src/plots/bar/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bar/adaptor.ts -------------------------------------------------------------------------------- /src/plots/bar/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bar/constants.ts -------------------------------------------------------------------------------- /src/plots/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bar/index.ts -------------------------------------------------------------------------------- /src/plots/bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bar/types.ts -------------------------------------------------------------------------------- /src/plots/bidirectional-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bidirectional-bar/index.ts -------------------------------------------------------------------------------- /src/plots/bidirectional-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bidirectional-bar/types.ts -------------------------------------------------------------------------------- /src/plots/bidirectional-bar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bidirectional-bar/utils.ts -------------------------------------------------------------------------------- /src/plots/box/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/box/adaptor.ts -------------------------------------------------------------------------------- /src/plots/box/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/box/constant.ts -------------------------------------------------------------------------------- /src/plots/box/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/box/index.ts -------------------------------------------------------------------------------- /src/plots/box/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/box/types.ts -------------------------------------------------------------------------------- /src/plots/box/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/box/utils.ts -------------------------------------------------------------------------------- /src/plots/bullet/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bullet/adaptor.ts -------------------------------------------------------------------------------- /src/plots/bullet/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bullet/constant.ts -------------------------------------------------------------------------------- /src/plots/bullet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bullet/index.ts -------------------------------------------------------------------------------- /src/plots/bullet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bullet/types.ts -------------------------------------------------------------------------------- /src/plots/bullet/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/bullet/utils.ts -------------------------------------------------------------------------------- /src/plots/chord/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/chord/adaptor.ts -------------------------------------------------------------------------------- /src/plots/chord/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/chord/constant.ts -------------------------------------------------------------------------------- /src/plots/chord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/chord/index.ts -------------------------------------------------------------------------------- /src/plots/chord/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/chord/types.ts -------------------------------------------------------------------------------- /src/plots/circle-packing/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/circle-packing/adaptor.ts -------------------------------------------------------------------------------- /src/plots/circle-packing/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/circle-packing/constant.ts -------------------------------------------------------------------------------- /src/plots/circle-packing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/circle-packing/index.ts -------------------------------------------------------------------------------- /src/plots/circle-packing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/circle-packing/types.ts -------------------------------------------------------------------------------- /src/plots/circle-packing/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/circle-packing/utils.ts -------------------------------------------------------------------------------- /src/plots/column/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/column/adaptor.ts -------------------------------------------------------------------------------- /src/plots/column/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/column/constants.ts -------------------------------------------------------------------------------- /src/plots/column/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/column/index.ts -------------------------------------------------------------------------------- /src/plots/column/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/column/types.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/adaptor.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/constant.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/index.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/types.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/util/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/util/geometry.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/util/legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/util/legend.ts -------------------------------------------------------------------------------- /src/plots/dual-axes/util/option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/dual-axes/util/option.ts -------------------------------------------------------------------------------- /src/plots/facet/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/facet/adaptor.ts -------------------------------------------------------------------------------- /src/plots/facet/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/facet/constant.ts -------------------------------------------------------------------------------- /src/plots/facet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/facet/index.ts -------------------------------------------------------------------------------- /src/plots/facet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/facet/types.ts -------------------------------------------------------------------------------- /src/plots/facet/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/facet/utils.ts -------------------------------------------------------------------------------- /src/plots/funnel/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/adaptor.ts -------------------------------------------------------------------------------- /src/plots/funnel/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/constant.ts -------------------------------------------------------------------------------- /src/plots/funnel/geometries/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/geometries/basic.ts -------------------------------------------------------------------------------- /src/plots/funnel/geometries/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/geometries/common.ts -------------------------------------------------------------------------------- /src/plots/funnel/geometries/facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/geometries/facet.ts -------------------------------------------------------------------------------- /src/plots/funnel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/index.ts -------------------------------------------------------------------------------- /src/plots/funnel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/funnel/types.ts -------------------------------------------------------------------------------- /src/plots/gauge/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/adaptor.ts -------------------------------------------------------------------------------- /src/plots/gauge/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/constants.ts -------------------------------------------------------------------------------- /src/plots/gauge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/index.ts -------------------------------------------------------------------------------- /src/plots/gauge/shapes/indicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/shapes/indicator.ts -------------------------------------------------------------------------------- /src/plots/gauge/shapes/meter-gauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/shapes/meter-gauge.ts -------------------------------------------------------------------------------- /src/plots/gauge/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/types.ts -------------------------------------------------------------------------------- /src/plots/gauge/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/gauge/utils.ts -------------------------------------------------------------------------------- /src/plots/heatmap/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/adaptor.ts -------------------------------------------------------------------------------- /src/plots/heatmap/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/constant.ts -------------------------------------------------------------------------------- /src/plots/heatmap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/index.ts -------------------------------------------------------------------------------- /src/plots/heatmap/shapes/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/shapes/circle.ts -------------------------------------------------------------------------------- /src/plots/heatmap/shapes/square.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/shapes/square.ts -------------------------------------------------------------------------------- /src/plots/heatmap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/heatmap/types.ts -------------------------------------------------------------------------------- /src/plots/histogram/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/histogram/adaptor.ts -------------------------------------------------------------------------------- /src/plots/histogram/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/histogram/constant.ts -------------------------------------------------------------------------------- /src/plots/histogram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/histogram/index.ts -------------------------------------------------------------------------------- /src/plots/histogram/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/histogram/types.ts -------------------------------------------------------------------------------- /src/plots/line/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/line/adaptor.ts -------------------------------------------------------------------------------- /src/plots/line/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/line/constants.ts -------------------------------------------------------------------------------- /src/plots/line/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/line/index.ts -------------------------------------------------------------------------------- /src/plots/line/interactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/line/interactions/index.ts -------------------------------------------------------------------------------- /src/plots/line/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/line/types.ts -------------------------------------------------------------------------------- /src/plots/liquid/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/adaptor.ts -------------------------------------------------------------------------------- /src/plots/liquid/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/constants.ts -------------------------------------------------------------------------------- /src/plots/liquid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/index.ts -------------------------------------------------------------------------------- /src/plots/liquid/shapes/liquid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/shapes/liquid.ts -------------------------------------------------------------------------------- /src/plots/liquid/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/types.ts -------------------------------------------------------------------------------- /src/plots/liquid/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/liquid/utils.ts -------------------------------------------------------------------------------- /src/plots/mix/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/mix/adaptor.ts -------------------------------------------------------------------------------- /src/plots/mix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/mix/index.ts -------------------------------------------------------------------------------- /src/plots/mix/interactions/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 相邻 view 的联动交互 3 | */ 4 | import './association'; 5 | -------------------------------------------------------------------------------- /src/plots/mix/interactions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/mix/interactions/utils.ts -------------------------------------------------------------------------------- /src/plots/mix/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/mix/types.ts -------------------------------------------------------------------------------- /src/plots/mix/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/mix/utils.ts -------------------------------------------------------------------------------- /src/plots/pie/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/adaptor.ts -------------------------------------------------------------------------------- /src/plots/pie/contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/contants.ts -------------------------------------------------------------------------------- /src/plots/pie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/index.ts -------------------------------------------------------------------------------- /src/plots/pie/interactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/interactions/index.ts -------------------------------------------------------------------------------- /src/plots/pie/interactions/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/interactions/util.ts -------------------------------------------------------------------------------- /src/plots/pie/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/types.ts -------------------------------------------------------------------------------- /src/plots/pie/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/pie/utils.ts -------------------------------------------------------------------------------- /src/plots/progress/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/progress/adaptor.ts -------------------------------------------------------------------------------- /src/plots/progress/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/progress/constants.ts -------------------------------------------------------------------------------- /src/plots/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/progress/index.ts -------------------------------------------------------------------------------- /src/plots/progress/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/progress/types.ts -------------------------------------------------------------------------------- /src/plots/progress/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/progress/utils.ts -------------------------------------------------------------------------------- /src/plots/radar/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radar/adaptor.ts -------------------------------------------------------------------------------- /src/plots/radar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radar/index.ts -------------------------------------------------------------------------------- /src/plots/radar/interactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radar/interactions/index.ts -------------------------------------------------------------------------------- /src/plots/radar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radar/types.ts -------------------------------------------------------------------------------- /src/plots/radial-bar/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radial-bar/adaptor.ts -------------------------------------------------------------------------------- /src/plots/radial-bar/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radial-bar/constant.ts -------------------------------------------------------------------------------- /src/plots/radial-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radial-bar/index.ts -------------------------------------------------------------------------------- /src/plots/radial-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radial-bar/types.ts -------------------------------------------------------------------------------- /src/plots/radial-bar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/radial-bar/utils.ts -------------------------------------------------------------------------------- /src/plots/ring-progress/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/ring-progress/adaptor.ts -------------------------------------------------------------------------------- /src/plots/ring-progress/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/ring-progress/constants.ts -------------------------------------------------------------------------------- /src/plots/ring-progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/ring-progress/index.ts -------------------------------------------------------------------------------- /src/plots/ring-progress/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/ring-progress/types.ts -------------------------------------------------------------------------------- /src/plots/rose/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/rose/adaptor.ts -------------------------------------------------------------------------------- /src/plots/rose/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/rose/constant.ts -------------------------------------------------------------------------------- /src/plots/rose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/rose/index.ts -------------------------------------------------------------------------------- /src/plots/rose/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/rose/types.ts -------------------------------------------------------------------------------- /src/plots/sankey/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/adaptor.ts -------------------------------------------------------------------------------- /src/plots/sankey/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/circle.ts -------------------------------------------------------------------------------- /src/plots/sankey/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/constant.ts -------------------------------------------------------------------------------- /src/plots/sankey/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/helper.ts -------------------------------------------------------------------------------- /src/plots/sankey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/index.ts -------------------------------------------------------------------------------- /src/plots/sankey/interactions/index.ts: -------------------------------------------------------------------------------- 1 | import './node-draggable'; 2 | -------------------------------------------------------------------------------- /src/plots/sankey/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/layout.ts -------------------------------------------------------------------------------- /src/plots/sankey/sankey/align.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/sankey/align.ts -------------------------------------------------------------------------------- /src/plots/sankey/sankey/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/sankey/helper.ts -------------------------------------------------------------------------------- /src/plots/sankey/sankey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/sankey/index.ts -------------------------------------------------------------------------------- /src/plots/sankey/sankey/sankey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/sankey/sankey.ts -------------------------------------------------------------------------------- /src/plots/sankey/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sankey/types.ts -------------------------------------------------------------------------------- /src/plots/scatter/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/scatter/adaptor.ts -------------------------------------------------------------------------------- /src/plots/scatter/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/scatter/constant.ts -------------------------------------------------------------------------------- /src/plots/scatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/scatter/index.ts -------------------------------------------------------------------------------- /src/plots/scatter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/scatter/types.ts -------------------------------------------------------------------------------- /src/plots/scatter/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/scatter/util.ts -------------------------------------------------------------------------------- /src/plots/stock/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/stock/adaptor.ts -------------------------------------------------------------------------------- /src/plots/stock/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/stock/constant.ts -------------------------------------------------------------------------------- /src/plots/stock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/stock/index.ts -------------------------------------------------------------------------------- /src/plots/stock/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/stock/types.ts -------------------------------------------------------------------------------- /src/plots/stock/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/stock/utils.ts -------------------------------------------------------------------------------- /src/plots/sunburst/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sunburst/adaptor.ts -------------------------------------------------------------------------------- /src/plots/sunburst/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sunburst/constant.ts -------------------------------------------------------------------------------- /src/plots/sunburst/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sunburst/index.ts -------------------------------------------------------------------------------- /src/plots/sunburst/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sunburst/types.ts -------------------------------------------------------------------------------- /src/plots/sunburst/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/sunburst/utils.ts -------------------------------------------------------------------------------- /src/plots/tiny-area/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-area/adaptor.ts -------------------------------------------------------------------------------- /src/plots/tiny-area/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-area/constants.ts -------------------------------------------------------------------------------- /src/plots/tiny-area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-area/index.ts -------------------------------------------------------------------------------- /src/plots/tiny-area/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-area/types.ts -------------------------------------------------------------------------------- /src/plots/tiny-column/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-column/adaptor.ts -------------------------------------------------------------------------------- /src/plots/tiny-column/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-column/constants.ts -------------------------------------------------------------------------------- /src/plots/tiny-column/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-column/index.ts -------------------------------------------------------------------------------- /src/plots/tiny-column/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-column/types.ts -------------------------------------------------------------------------------- /src/plots/tiny-line/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-line/adaptor.ts -------------------------------------------------------------------------------- /src/plots/tiny-line/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-line/constants.ts -------------------------------------------------------------------------------- /src/plots/tiny-line/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-line/index.ts -------------------------------------------------------------------------------- /src/plots/tiny-line/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-line/types.ts -------------------------------------------------------------------------------- /src/plots/tiny-line/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/tiny-line/utils.ts -------------------------------------------------------------------------------- /src/plots/treemap/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/treemap/adaptor.ts -------------------------------------------------------------------------------- /src/plots/treemap/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/treemap/constant.ts -------------------------------------------------------------------------------- /src/plots/treemap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/treemap/index.ts -------------------------------------------------------------------------------- /src/plots/treemap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/treemap/types.ts -------------------------------------------------------------------------------- /src/plots/treemap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/treemap/utils.ts -------------------------------------------------------------------------------- /src/plots/venn/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/adaptor.ts -------------------------------------------------------------------------------- /src/plots/venn/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/constant.ts -------------------------------------------------------------------------------- /src/plots/venn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/index.ts -------------------------------------------------------------------------------- /src/plots/venn/interactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/interactions/index.ts -------------------------------------------------------------------------------- /src/plots/venn/interactions/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/interactions/util.ts -------------------------------------------------------------------------------- /src/plots/venn/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/label.ts -------------------------------------------------------------------------------- /src/plots/venn/layout/diagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/layout/diagram.ts -------------------------------------------------------------------------------- /src/plots/venn/layout/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/layout/layout.ts -------------------------------------------------------------------------------- /src/plots/venn/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/shape.ts -------------------------------------------------------------------------------- /src/plots/venn/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/types.ts -------------------------------------------------------------------------------- /src/plots/venn/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/venn/utils.ts -------------------------------------------------------------------------------- /src/plots/violin/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/violin/adaptor.ts -------------------------------------------------------------------------------- /src/plots/violin/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/violin/constant.ts -------------------------------------------------------------------------------- /src/plots/violin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/violin/index.ts -------------------------------------------------------------------------------- /src/plots/violin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/violin/types.ts -------------------------------------------------------------------------------- /src/plots/violin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/violin/utils.ts -------------------------------------------------------------------------------- /src/plots/waterfall/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/adaptor.ts -------------------------------------------------------------------------------- /src/plots/waterfall/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/constant.ts -------------------------------------------------------------------------------- /src/plots/waterfall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/index.ts -------------------------------------------------------------------------------- /src/plots/waterfall/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/shape.ts -------------------------------------------------------------------------------- /src/plots/waterfall/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/types.ts -------------------------------------------------------------------------------- /src/plots/waterfall/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/waterfall/utils.ts -------------------------------------------------------------------------------- /src/plots/word-cloud/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/word-cloud/adaptor.ts -------------------------------------------------------------------------------- /src/plots/word-cloud/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/word-cloud/constant.ts -------------------------------------------------------------------------------- /src/plots/word-cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/word-cloud/index.ts -------------------------------------------------------------------------------- /src/plots/word-cloud/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/word-cloud/types.ts -------------------------------------------------------------------------------- /src/plots/word-cloud/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plots/word-cloud/utils.ts -------------------------------------------------------------------------------- /src/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/plugin/index.ts -------------------------------------------------------------------------------- /src/types/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/animation.ts -------------------------------------------------------------------------------- /src/types/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/annotation.ts -------------------------------------------------------------------------------- /src/types/attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/attr.ts -------------------------------------------------------------------------------- /src/types/axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/axis.ts -------------------------------------------------------------------------------- /src/types/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/button.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/coordinate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/coordinate.ts -------------------------------------------------------------------------------- /src/types/drill-down.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/drill-down.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/interaction.ts -------------------------------------------------------------------------------- /src/types/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/label.ts -------------------------------------------------------------------------------- /src/types/legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/legend.ts -------------------------------------------------------------------------------- /src/types/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/locale.ts -------------------------------------------------------------------------------- /src/types/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/meta.ts -------------------------------------------------------------------------------- /src/types/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/pattern.ts -------------------------------------------------------------------------------- /src/types/relation-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/relation-data.ts -------------------------------------------------------------------------------- /src/types/scrollbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/scrollbar.ts -------------------------------------------------------------------------------- /src/types/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/slider.ts -------------------------------------------------------------------------------- /src/types/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/state.ts -------------------------------------------------------------------------------- /src/types/statistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/statistic.ts -------------------------------------------------------------------------------- /src/types/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/types/tooltip.ts -------------------------------------------------------------------------------- /src/utils/color/blend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/color/blend.ts -------------------------------------------------------------------------------- /src/utils/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/context.ts -------------------------------------------------------------------------------- /src/utils/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/conversion.ts -------------------------------------------------------------------------------- /src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/data.ts -------------------------------------------------------------------------------- /src/utils/deep-assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/deep-assign.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/flow.ts -------------------------------------------------------------------------------- /src/utils/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/geometry.ts -------------------------------------------------------------------------------- /src/utils/hierarchy/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/hierarchy/pack.ts -------------------------------------------------------------------------------- /src/utils/hierarchy/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/hierarchy/partition.ts -------------------------------------------------------------------------------- /src/utils/hierarchy/treemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/hierarchy/treemap.ts -------------------------------------------------------------------------------- /src/utils/hierarchy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/hierarchy/types.ts -------------------------------------------------------------------------------- /src/utils/hierarchy/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/hierarchy/util.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/invariant.ts -------------------------------------------------------------------------------- /src/utils/kebab-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/kebab-case.ts -------------------------------------------------------------------------------- /src/utils/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/label.ts -------------------------------------------------------------------------------- /src/utils/matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/matrix.ts -------------------------------------------------------------------------------- /src/utils/measure-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/measure-text.ts -------------------------------------------------------------------------------- /src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/number.ts -------------------------------------------------------------------------------- /src/utils/padding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/padding.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/pattern/dot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pattern/dot.ts -------------------------------------------------------------------------------- /src/utils/pattern/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pattern/index.ts -------------------------------------------------------------------------------- /src/utils/pattern/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pattern/line.ts -------------------------------------------------------------------------------- /src/utils/pattern/square.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pattern/square.ts -------------------------------------------------------------------------------- /src/utils/pattern/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pattern/util.ts -------------------------------------------------------------------------------- /src/utils/pick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/pick.ts -------------------------------------------------------------------------------- /src/utils/statistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/statistic.ts -------------------------------------------------------------------------------- /src/utils/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/template.ts -------------------------------------------------------------------------------- /src/utils/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/tooltip.ts -------------------------------------------------------------------------------- /src/utils/transform/chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/transform/chord.ts -------------------------------------------------------------------------------- /src/utils/transform/histogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/transform/histogram.ts -------------------------------------------------------------------------------- /src/utils/transform/percent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/transform/percent.ts -------------------------------------------------------------------------------- /src/utils/transform/quantile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/transform/quantile.ts -------------------------------------------------------------------------------- /src/utils/transform/sankey.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/transform/word-cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/transform/word-cloud.ts -------------------------------------------------------------------------------- /src/utils/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/src/utils/view.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/G2Plot/HEAD/webpack.config.js --------------------------------------------------------------------------------