├── .eslintrc ├── .gitignore ├── .npmignore ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── examples ├── area │ ├── area-gradient.md │ ├── area-null.md │ ├── area-percent.md │ ├── area-range-line.md │ ├── area-range.md │ ├── area-smooth.md │ ├── area-stack.md │ ├── area-with-negative.md │ └── area.md ├── bar │ ├── bar-bullet.md │ ├── bar-dodge.md │ ├── bar.md │ ├── column-dodge.md │ ├── column-line.md │ ├── column-percent.md │ ├── column-stack.md │ ├── column-symmetric.md │ ├── column-tick.md │ ├── column.md │ └── range-bar.md ├── boxplot │ ├── coord-plus.md │ ├── coord-polar.md │ ├── one-dim-dodge.md │ ├── one-dim.md │ ├── two-dim-dodge.md │ └── two-dim.md ├── contour │ ├── fill.md │ ├── image.md │ └── line.md ├── coordinate │ ├── combine.md │ ├── plus-reflect.md │ ├── plus.md │ ├── polar-line.md │ ├── polar-reflect.md │ ├── polar.md │ ├── radar.md │ ├── rect.md │ ├── reflect-x.md │ ├── reflect-xy.md │ ├── reflect.md │ ├── rotate.md │ ├── scale.md │ └── theta.md ├── data │ ├── china-no-SouthSea.json │ ├── diamond.json │ ├── iris_flower_data.json │ ├── mobile.json │ ├── pyramid.json │ ├── scatter1.json │ ├── stock-data.json │ └── world.geo.json ├── guide │ ├── image.md │ ├── line.md │ ├── rect.md │ ├── tag.md │ └── text.md ├── heatmap │ ├── density.md │ ├── image.md │ ├── loess.md │ ├── normal.md │ ├── set-color.md │ └── set-size.md ├── hex │ ├── cat-linear.md │ ├── cat.md │ ├── hex.md │ ├── linear-hue.md │ ├── linear.md │ └── polar.md ├── histogram │ ├── his-custom.md │ ├── his-density.md │ ├── his-non-uniform.md │ ├── his-plus-reflect.md │ ├── his-plus.md │ ├── his-polar.md │ ├── his-statck.md │ └── his.md ├── label-set │ ├── column-inner-label.md │ ├── column-label.md │ └── custom-label.md ├── legend │ ├── bottom-legend.md │ ├── hide-legend.md │ ├── left-legend.md │ ├── legend-cfg.md │ ├── multi-legend.md │ └── top-position.md ├── line │ ├── line-dot.md │ ├── line-smooth.md │ ├── line-spline.md │ ├── line.md │ ├── path.md │ └── step-line.md ├── map │ ├── china-albers.md │ ├── world-albers.md │ └── world-mercator.md ├── others │ ├── area.md │ ├── candleSticks.md │ ├── clustered-stacked-bar.md │ ├── custom-tooltip.md │ ├── dashBoard.md │ ├── data │ │ ├── USA.geo.json │ │ ├── airport.json │ │ ├── avg-temp.json │ │ ├── candleSticks.json │ │ ├── d3.json │ │ ├── data.json │ │ ├── diamond.json │ │ ├── flights-airport.json │ │ ├── mobile.json │ │ ├── pyramid.json │ │ ├── rain-flow.json │ │ ├── time.json │ │ ├── time1.json │ │ └── world.geo.json │ ├── donut-chart.md │ ├── forceFit.md │ ├── guideArc.md │ ├── interval.md │ ├── legend-auto-wrap.md │ ├── legendWarpCol.md │ ├── line.md │ ├── map-albers-project.md │ ├── map-dot-and-edge.md │ ├── map.md │ ├── pie-bar.md │ ├── pie-nest.md │ ├── pie-text-bug.md │ ├── point-jitter.md │ ├── polar-chart.md │ ├── textalign.md │ └── tree.md ├── pie │ ├── cascade.md │ ├── donut.md │ ├── pie-half.md │ ├── pie-no-stat.md │ ├── pie-proportion.md │ ├── pie.md │ └── rose.md ├── point-jitter │ ├── one-jitter.md │ ├── point-dodge.md │ ├── point-jitter1.md │ ├── point-jitter2.md │ ├── point-jitter3.md │ └── two-jitter.md ├── scale │ ├── cat-format.md │ ├── cat.md │ ├── linear.md │ ├── log.md │ ├── pow.md │ └── time.md ├── show-how │ ├── demo.md │ ├── diamond.md │ ├── pie.md │ └── polygon.md ├── stat │ ├── accumulate.md │ ├── bin-dot.md │ ├── bin-hex.md │ ├── bin-quan.md │ ├── bin-rect.md │ ├── count.md │ ├── density-kernel.md │ ├── density-normal.md │ ├── density.md │ ├── loess.md │ ├── max.md │ ├── mean.md │ ├── median.md │ ├── min.md │ ├── mode.md │ ├── percent.md │ ├── proportion.md │ ├── range.md │ ├── sd.md │ ├── smooth-cubic.md │ ├── smooth-exp.md │ ├── smooth-loess.md │ ├── smooth-two.md │ ├── smooth.md │ ├── spread-range.md │ ├── spread-sd.md │ └── sum.md ├── tooltip │ ├── change.md │ ├── custom-other.md │ ├── custom.md │ ├── formatter.md │ └── no-follow.md └── treemap │ ├── mobile-children.md │ ├── treemap1.md │ └── treemap2.md ├── index.js ├── info.md ├── package.json ├── src ├── component.js ├── index.js └── index.less ├── tests └── index-test.js └── webpack.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | info.md 2 | .idea 3 | .DS_Store 4 | tmp 5 | node_modules -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/README.md -------------------------------------------------------------------------------- /examples/area/area-gradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-gradient.md -------------------------------------------------------------------------------- /examples/area/area-null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-null.md -------------------------------------------------------------------------------- /examples/area/area-percent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-percent.md -------------------------------------------------------------------------------- /examples/area/area-range-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-range-line.md -------------------------------------------------------------------------------- /examples/area/area-range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-range.md -------------------------------------------------------------------------------- /examples/area/area-smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-smooth.md -------------------------------------------------------------------------------- /examples/area/area-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-stack.md -------------------------------------------------------------------------------- /examples/area/area-with-negative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area-with-negative.md -------------------------------------------------------------------------------- /examples/area/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/area/area.md -------------------------------------------------------------------------------- /examples/bar/bar-bullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/bar-bullet.md -------------------------------------------------------------------------------- /examples/bar/bar-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/bar-dodge.md -------------------------------------------------------------------------------- /examples/bar/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/bar.md -------------------------------------------------------------------------------- /examples/bar/column-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-dodge.md -------------------------------------------------------------------------------- /examples/bar/column-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-line.md -------------------------------------------------------------------------------- /examples/bar/column-percent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-percent.md -------------------------------------------------------------------------------- /examples/bar/column-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-stack.md -------------------------------------------------------------------------------- /examples/bar/column-symmetric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-symmetric.md -------------------------------------------------------------------------------- /examples/bar/column-tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column-tick.md -------------------------------------------------------------------------------- /examples/bar/column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/column.md -------------------------------------------------------------------------------- /examples/bar/range-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/bar/range-bar.md -------------------------------------------------------------------------------- /examples/boxplot/coord-plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/coord-plus.md -------------------------------------------------------------------------------- /examples/boxplot/coord-polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/coord-polar.md -------------------------------------------------------------------------------- /examples/boxplot/one-dim-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/one-dim-dodge.md -------------------------------------------------------------------------------- /examples/boxplot/one-dim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/one-dim.md -------------------------------------------------------------------------------- /examples/boxplot/two-dim-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/two-dim-dodge.md -------------------------------------------------------------------------------- /examples/boxplot/two-dim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/boxplot/two-dim.md -------------------------------------------------------------------------------- /examples/contour/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/contour/fill.md -------------------------------------------------------------------------------- /examples/contour/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/contour/image.md -------------------------------------------------------------------------------- /examples/contour/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/contour/line.md -------------------------------------------------------------------------------- /examples/coordinate/combine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/combine.md -------------------------------------------------------------------------------- /examples/coordinate/plus-reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/plus-reflect.md -------------------------------------------------------------------------------- /examples/coordinate/plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/plus.md -------------------------------------------------------------------------------- /examples/coordinate/polar-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/polar-line.md -------------------------------------------------------------------------------- /examples/coordinate/polar-reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/polar-reflect.md -------------------------------------------------------------------------------- /examples/coordinate/polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/polar.md -------------------------------------------------------------------------------- /examples/coordinate/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/radar.md -------------------------------------------------------------------------------- /examples/coordinate/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/rect.md -------------------------------------------------------------------------------- /examples/coordinate/reflect-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/reflect-x.md -------------------------------------------------------------------------------- /examples/coordinate/reflect-xy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/reflect-xy.md -------------------------------------------------------------------------------- /examples/coordinate/reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/reflect.md -------------------------------------------------------------------------------- /examples/coordinate/rotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/rotate.md -------------------------------------------------------------------------------- /examples/coordinate/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/scale.md -------------------------------------------------------------------------------- /examples/coordinate/theta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/coordinate/theta.md -------------------------------------------------------------------------------- /examples/data/china-no-SouthSea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/china-no-SouthSea.json -------------------------------------------------------------------------------- /examples/data/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/diamond.json -------------------------------------------------------------------------------- /examples/data/iris_flower_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/iris_flower_data.json -------------------------------------------------------------------------------- /examples/data/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/mobile.json -------------------------------------------------------------------------------- /examples/data/pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/pyramid.json -------------------------------------------------------------------------------- /examples/data/scatter1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/scatter1.json -------------------------------------------------------------------------------- /examples/data/stock-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/stock-data.json -------------------------------------------------------------------------------- /examples/data/world.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/data/world.geo.json -------------------------------------------------------------------------------- /examples/guide/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/guide/image.md -------------------------------------------------------------------------------- /examples/guide/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/guide/line.md -------------------------------------------------------------------------------- /examples/guide/rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/guide/rect.md -------------------------------------------------------------------------------- /examples/guide/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/guide/tag.md -------------------------------------------------------------------------------- /examples/guide/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/guide/text.md -------------------------------------------------------------------------------- /examples/heatmap/density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/density.md -------------------------------------------------------------------------------- /examples/heatmap/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/image.md -------------------------------------------------------------------------------- /examples/heatmap/loess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/loess.md -------------------------------------------------------------------------------- /examples/heatmap/normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/normal.md -------------------------------------------------------------------------------- /examples/heatmap/set-color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/set-color.md -------------------------------------------------------------------------------- /examples/heatmap/set-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/heatmap/set-size.md -------------------------------------------------------------------------------- /examples/hex/cat-linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/cat-linear.md -------------------------------------------------------------------------------- /examples/hex/cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/cat.md -------------------------------------------------------------------------------- /examples/hex/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/hex.md -------------------------------------------------------------------------------- /examples/hex/linear-hue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/linear-hue.md -------------------------------------------------------------------------------- /examples/hex/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/linear.md -------------------------------------------------------------------------------- /examples/hex/polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/hex/polar.md -------------------------------------------------------------------------------- /examples/histogram/his-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-custom.md -------------------------------------------------------------------------------- /examples/histogram/his-density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-density.md -------------------------------------------------------------------------------- /examples/histogram/his-non-uniform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-non-uniform.md -------------------------------------------------------------------------------- /examples/histogram/his-plus-reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-plus-reflect.md -------------------------------------------------------------------------------- /examples/histogram/his-plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-plus.md -------------------------------------------------------------------------------- /examples/histogram/his-polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-polar.md -------------------------------------------------------------------------------- /examples/histogram/his-statck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his-statck.md -------------------------------------------------------------------------------- /examples/histogram/his.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/histogram/his.md -------------------------------------------------------------------------------- /examples/label-set/column-inner-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/label-set/column-inner-label.md -------------------------------------------------------------------------------- /examples/label-set/column-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/label-set/column-label.md -------------------------------------------------------------------------------- /examples/label-set/custom-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/label-set/custom-label.md -------------------------------------------------------------------------------- /examples/legend/bottom-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/bottom-legend.md -------------------------------------------------------------------------------- /examples/legend/hide-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/hide-legend.md -------------------------------------------------------------------------------- /examples/legend/left-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/left-legend.md -------------------------------------------------------------------------------- /examples/legend/legend-cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/legend-cfg.md -------------------------------------------------------------------------------- /examples/legend/multi-legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/multi-legend.md -------------------------------------------------------------------------------- /examples/legend/top-position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/legend/top-position.md -------------------------------------------------------------------------------- /examples/line/line-dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/line-dot.md -------------------------------------------------------------------------------- /examples/line/line-smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/line-smooth.md -------------------------------------------------------------------------------- /examples/line/line-spline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/line-spline.md -------------------------------------------------------------------------------- /examples/line/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/line.md -------------------------------------------------------------------------------- /examples/line/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/path.md -------------------------------------------------------------------------------- /examples/line/step-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/line/step-line.md -------------------------------------------------------------------------------- /examples/map/china-albers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/map/china-albers.md -------------------------------------------------------------------------------- /examples/map/world-albers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/map/world-albers.md -------------------------------------------------------------------------------- /examples/map/world-mercator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/map/world-mercator.md -------------------------------------------------------------------------------- /examples/others/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/area.md -------------------------------------------------------------------------------- /examples/others/candleSticks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/candleSticks.md -------------------------------------------------------------------------------- /examples/others/clustered-stacked-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/clustered-stacked-bar.md -------------------------------------------------------------------------------- /examples/others/custom-tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/custom-tooltip.md -------------------------------------------------------------------------------- /examples/others/dashBoard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/dashBoard.md -------------------------------------------------------------------------------- /examples/others/data/USA.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/USA.geo.json -------------------------------------------------------------------------------- /examples/others/data/airport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/airport.json -------------------------------------------------------------------------------- /examples/others/data/avg-temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/avg-temp.json -------------------------------------------------------------------------------- /examples/others/data/candleSticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/candleSticks.json -------------------------------------------------------------------------------- /examples/others/data/d3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/d3.json -------------------------------------------------------------------------------- /examples/others/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/data.json -------------------------------------------------------------------------------- /examples/others/data/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/diamond.json -------------------------------------------------------------------------------- /examples/others/data/flights-airport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/flights-airport.json -------------------------------------------------------------------------------- /examples/others/data/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/mobile.json -------------------------------------------------------------------------------- /examples/others/data/pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/pyramid.json -------------------------------------------------------------------------------- /examples/others/data/rain-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/rain-flow.json -------------------------------------------------------------------------------- /examples/others/data/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/time.json -------------------------------------------------------------------------------- /examples/others/data/time1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/time1.json -------------------------------------------------------------------------------- /examples/others/data/world.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/data/world.geo.json -------------------------------------------------------------------------------- /examples/others/donut-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/donut-chart.md -------------------------------------------------------------------------------- /examples/others/forceFit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/forceFit.md -------------------------------------------------------------------------------- /examples/others/guideArc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/guideArc.md -------------------------------------------------------------------------------- /examples/others/interval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/interval.md -------------------------------------------------------------------------------- /examples/others/legend-auto-wrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/legend-auto-wrap.md -------------------------------------------------------------------------------- /examples/others/legendWarpCol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/legendWarpCol.md -------------------------------------------------------------------------------- /examples/others/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/line.md -------------------------------------------------------------------------------- /examples/others/map-albers-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/map-albers-project.md -------------------------------------------------------------------------------- /examples/others/map-dot-and-edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/map-dot-and-edge.md -------------------------------------------------------------------------------- /examples/others/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/map.md -------------------------------------------------------------------------------- /examples/others/pie-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/pie-bar.md -------------------------------------------------------------------------------- /examples/others/pie-nest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/pie-nest.md -------------------------------------------------------------------------------- /examples/others/pie-text-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/pie-text-bug.md -------------------------------------------------------------------------------- /examples/others/point-jitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/point-jitter.md -------------------------------------------------------------------------------- /examples/others/polar-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/polar-chart.md -------------------------------------------------------------------------------- /examples/others/textalign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/textalign.md -------------------------------------------------------------------------------- /examples/others/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/others/tree.md -------------------------------------------------------------------------------- /examples/pie/cascade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/cascade.md -------------------------------------------------------------------------------- /examples/pie/donut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/donut.md -------------------------------------------------------------------------------- /examples/pie/pie-half.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/pie-half.md -------------------------------------------------------------------------------- /examples/pie/pie-no-stat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/pie-no-stat.md -------------------------------------------------------------------------------- /examples/pie/pie-proportion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/pie-proportion.md -------------------------------------------------------------------------------- /examples/pie/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/pie.md -------------------------------------------------------------------------------- /examples/pie/rose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/pie/rose.md -------------------------------------------------------------------------------- /examples/point-jitter/one-jitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/one-jitter.md -------------------------------------------------------------------------------- /examples/point-jitter/point-dodge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/point-dodge.md -------------------------------------------------------------------------------- /examples/point-jitter/point-jitter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/point-jitter1.md -------------------------------------------------------------------------------- /examples/point-jitter/point-jitter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/point-jitter2.md -------------------------------------------------------------------------------- /examples/point-jitter/point-jitter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/point-jitter3.md -------------------------------------------------------------------------------- /examples/point-jitter/two-jitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/point-jitter/two-jitter.md -------------------------------------------------------------------------------- /examples/scale/cat-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/cat-format.md -------------------------------------------------------------------------------- /examples/scale/cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/cat.md -------------------------------------------------------------------------------- /examples/scale/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/linear.md -------------------------------------------------------------------------------- /examples/scale/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/log.md -------------------------------------------------------------------------------- /examples/scale/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/pow.md -------------------------------------------------------------------------------- /examples/scale/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/scale/time.md -------------------------------------------------------------------------------- /examples/show-how/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/show-how/demo.md -------------------------------------------------------------------------------- /examples/show-how/diamond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/show-how/diamond.md -------------------------------------------------------------------------------- /examples/show-how/pie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/show-how/pie.md -------------------------------------------------------------------------------- /examples/show-how/polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/show-how/polygon.md -------------------------------------------------------------------------------- /examples/stat/accumulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/accumulate.md -------------------------------------------------------------------------------- /examples/stat/bin-dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/bin-dot.md -------------------------------------------------------------------------------- /examples/stat/bin-hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/bin-hex.md -------------------------------------------------------------------------------- /examples/stat/bin-quan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/bin-quan.md -------------------------------------------------------------------------------- /examples/stat/bin-rect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/bin-rect.md -------------------------------------------------------------------------------- /examples/stat/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/count.md -------------------------------------------------------------------------------- /examples/stat/density-kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/density-kernel.md -------------------------------------------------------------------------------- /examples/stat/density-normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/density-normal.md -------------------------------------------------------------------------------- /examples/stat/density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/density.md -------------------------------------------------------------------------------- /examples/stat/loess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/loess.md -------------------------------------------------------------------------------- /examples/stat/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/max.md -------------------------------------------------------------------------------- /examples/stat/mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/mean.md -------------------------------------------------------------------------------- /examples/stat/median.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/median.md -------------------------------------------------------------------------------- /examples/stat/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/min.md -------------------------------------------------------------------------------- /examples/stat/mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/mode.md -------------------------------------------------------------------------------- /examples/stat/percent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/percent.md -------------------------------------------------------------------------------- /examples/stat/proportion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/proportion.md -------------------------------------------------------------------------------- /examples/stat/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/range.md -------------------------------------------------------------------------------- /examples/stat/sd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/sd.md -------------------------------------------------------------------------------- /examples/stat/smooth-cubic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/smooth-cubic.md -------------------------------------------------------------------------------- /examples/stat/smooth-exp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/smooth-exp.md -------------------------------------------------------------------------------- /examples/stat/smooth-loess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/smooth-loess.md -------------------------------------------------------------------------------- /examples/stat/smooth-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/smooth-two.md -------------------------------------------------------------------------------- /examples/stat/smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/smooth.md -------------------------------------------------------------------------------- /examples/stat/spread-range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/spread-range.md -------------------------------------------------------------------------------- /examples/stat/spread-sd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/spread-sd.md -------------------------------------------------------------------------------- /examples/stat/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/stat/sum.md -------------------------------------------------------------------------------- /examples/tooltip/change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/tooltip/change.md -------------------------------------------------------------------------------- /examples/tooltip/custom-other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/tooltip/custom-other.md -------------------------------------------------------------------------------- /examples/tooltip/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/tooltip/custom.md -------------------------------------------------------------------------------- /examples/tooltip/formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/tooltip/formatter.md -------------------------------------------------------------------------------- /examples/tooltip/no-follow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/tooltip/no-follow.md -------------------------------------------------------------------------------- /examples/treemap/mobile-children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/treemap/mobile-children.md -------------------------------------------------------------------------------- /examples/treemap/treemap1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/treemap/treemap1.md -------------------------------------------------------------------------------- /examples/treemap/treemap2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/examples/treemap/treemap2.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/index.js -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/info.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/src/component.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/src/index.less -------------------------------------------------------------------------------- /tests/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/tests/index-test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2-JS/G2-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------