实例介绍
ECharts最全的详细示例demo,包含了zrender,都是可以直接运行调试的。
【实例截图】
【核心代码】
echarts-master
└── echarts-master
├── echarts-master
│ ├── asset
│ │ └── logo.png
│ ├── benchmark
│ │ ├── dep
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ └── bootstrap.min.js
│ │ │ ├── filesaver
│ │ │ │ └── FileSaver.min.js
│ │ │ ├── jquery
│ │ │ │ └── jquery-2.2.4.js
│ │ │ ├── lodash
│ │ │ │ └── lodash.js
│ │ │ └── vue
│ │ │ └── vue.min.js
│ │ ├── gulpfile.js
│ │ ├── index.html
│ │ └── src
│ │ ├── app.js
│ │ ├── testCase.js
│ │ ├── testFactory.js
│ │ └── testManager.js
│ ├── build
│ │ ├── amd2common.js
│ │ ├── build.sh
│ │ ├── mangleString.js
│ │ └── optimize.js
│ ├── dist
│ │ ├── echarts.common.js
│ │ ├── echarts.common.min.js
│ │ ├── echarts.js
│ │ ├── echarts.min.js
│ │ ├── echarts.simple.js
│ │ ├── echarts.simple.min.js
│ │ └── extension
│ │ ├── bmap.js
│ │ ├── bmap.min.js
│ │ ├── dataTool.js
│ │ └── dataTool.min.js
│ ├── extension
│ │ ├── bmap
│ │ │ ├── BMapCoordSys.js
│ │ │ ├── bmap.js
│ │ │ ├── BMapModel.js
│ │ │ ├── BMapView.js
│ │ │ └── README.md
│ │ ├── dataTool
│ │ │ ├── gexf.js
│ │ │ ├── index.js
│ │ │ ├── prepareBoxplotData.js
│ │ │ └── quantile.js
│ │ ├── echarts.js
│ │ └── webpack.config.js
│ ├── index.common.js
│ ├── index.js
│ ├── index.simple.js
│ ├── LICENSE
│ ├── map
│ │ ├── js
│ │ │ ├── china-contour.js
│ │ │ ├── china.js
│ │ │ ├── province
│ │ │ │ ├── anhui.js
│ │ │ │ ├── aomen.js
│ │ │ │ ├── beijing.js
│ │ │ │ ├── chongqing.js
│ │ │ │ ├── fujian.js
│ │ │ │ ├── gansu.js
│ │ │ │ ├── guangdong.js
│ │ │ │ ├── guangxi.js
│ │ │ │ ├── guizhou.js
│ │ │ │ ├── hainan.js
│ │ │ │ ├── hebei.js
│ │ │ │ ├── heilongjiang.js
│ │ │ │ ├── henan.js
│ │ │ │ ├── hubei.js
│ │ │ │ ├── hunan.js
│ │ │ │ ├── jiangsu.js
│ │ │ │ ├── jiangxi.js
│ │ │ │ ├── jilin.js
│ │ │ │ ├── liaoning.js
│ │ │ │ ├── neimenggu.js
│ │ │ │ ├── ningxia.js
│ │ │ │ ├── qinghai.js
│ │ │ │ ├── shandong.js
│ │ │ │ ├── shanghai.js
│ │ │ │ ├── shanxi1.js
│ │ │ │ ├── shanxi.js
│ │ │ │ ├── sichuan.js
│ │ │ │ ├── taiwan.js
│ │ │ │ ├── tianjin.js
│ │ │ │ ├── xianggang.js
│ │ │ │ ├── xinjiang.js
│ │ │ │ ├── xizang.js
│ │ │ │ ├── yunnan.js
│ │ │ │ └── zhejiang.js
│ │ │ └── world.js
│ │ └── json
│ │ ├── china-cities.json
│ │ ├── china-contour.json
│ │ ├── china.json
│ │ ├── province
│ │ │ ├── anhui.json
│ │ │ ├── aomen.json
│ │ │ ├── beijing.json
│ │ │ ├── chongqing.json
│ │ │ ├── fujian.json
│ │ │ ├── gansu.json
│ │ │ ├── guangdong.json
│ │ │ ├── guangxi.json
│ │ │ ├── guizhou.json
│ │ │ ├── hainan.json
│ │ │ ├── hebei.json
│ │ │ ├── heilongjiang.json
│ │ │ ├── henan.json
│ │ │ ├── hubei.json
│ │ │ ├── hunan.json
│ │ │ ├── jiangsu.json
│ │ │ ├── jiangxi.json
│ │ │ ├── jilin.json
│ │ │ ├── liaoning.json
│ │ │ ├── neimenggu.json
│ │ │ ├── ningxia.json
│ │ │ ├── qinghai.json
│ │ │ ├── shandong.json
│ │ │ ├── shanghai.json
│ │ │ ├── shanxi1.json
│ │ │ ├── shanxi.json
│ │ │ ├── sichuan.json
│ │ │ ├── taiwan.json
│ │ │ ├── tianjin.json
│ │ │ ├── xianggang.json
│ │ │ ├── xinjiang.json
│ │ │ ├── xizang.json
│ │ │ ├── yunnan.json
│ │ │ └── zhejiang.json
│ │ └── world.json
│ ├── package.json
│ ├── README.md
│ ├── src
│ │ ├── action
│ │ │ ├── createDataSelectAction.js
│ │ │ ├── geoRoam.js
│ │ │ └── roamHelper.js
│ │ ├── chart
│ │ │ ├── bar
│ │ │ │ ├── barItemStyle.js
│ │ │ │ ├── BarSeries.js
│ │ │ │ ├── BarView.js
│ │ │ │ ├── BaseBarSeries.js
│ │ │ │ ├── helper.js
│ │ │ │ ├── PictorialBarSeries.js
│ │ │ │ └── PictorialBarView.js
│ │ │ ├── bar.js
│ │ │ ├── boxplot
│ │ │ │ ├── boxplotLayout.js
│ │ │ │ ├── BoxplotSeries.js
│ │ │ │ ├── BoxplotView.js
│ │ │ │ └── boxplotVisual.js
│ │ │ ├── boxplot.js
│ │ │ ├── candlestick
│ │ │ │ ├── candlestickLayout.js
│ │ │ │ ├── CandlestickSeries.js
│ │ │ │ ├── CandlestickView.js
│ │ │ │ ├── candlestickVisual.js
│ │ │ │ └── preprocessor.js
│ │ │ ├── candlestick.js
│ │ │ ├── chord
│ │ │ │ ├── chordCircularLayout.js
│ │ │ │ ├── ChordSeries.js
│ │ │ │ ├── ChordView.js
│ │ │ │ └── Ribbon.js
│ │ │ ├── chord.js
│ │ │ ├── custom.js
│ │ │ ├── effectScatter
│ │ │ │ ├── EffectScatterSeries.js
│ │ │ │ └── EffectScatterView.js
│ │ │ ├── effectScatter.js
│ │ │ ├── funnel
│ │ │ │ ├── funnelLayout.js
│ │ │ │ ├── FunnelSeries.js
│ │ │ │ └── FunnelView.js
│ │ │ ├── funnel.js
│ │ │ ├── gauge
│ │ │ │ ├── GaugeSeries.js
│ │ │ │ ├── GaugeView.js
│ │ │ │ └── PointerPath.js
│ │ │ ├── gauge.js
│ │ │ ├── graph
│ │ │ │ ├── adjustEdge.js
│ │ │ │ ├── backwardCompat.js
│ │ │ │ ├── categoryFilter.js
│ │ │ │ ├── categoryVisual.js
│ │ │ │ ├── circularLayoutHelper.js
│ │ │ │ ├── circularLayout.js
│ │ │ │ ├── createView.js
│ │ │ │ ├── edgeVisual.js
│ │ │ │ ├── forceHelper.js
│ │ │ │ ├── forceLayout.js
│ │ │ │ ├── graphAction.js
│ │ │ │ ├── GraphSeries.js
│ │ │ │ ├── GraphView.js
│ │ │ │ ├── simpleLayoutEdge.js
│ │ │ │ ├── simpleLayoutHelper.js
│ │ │ │ └── simpleLayout.js
│ │ │ ├── graph.js
│ │ │ ├── heatmap
│ │ │ │ ├── HeatmapLayer.js
│ │ │ │ ├── HeatmapSeries.js
│ │ │ │ └── HeatmapView.js
│ │ │ ├── heatmap.js
│ │ │ ├── helper
│ │ │ │ ├── createGraphFromNodeEdge.js
│ │ │ │ ├── createGraphFromNodeMatrix.js
│ │ │ │ ├── createListFromArray.js
│ │ │ │ ├── EffectLine.js
│ │ │ │ ├── EffectPolyline.js
│ │ │ │ ├── EffectSymbol.js
│ │ │ │ ├── labelHelper.js
│ │ │ │ ├── LargeLineDraw.js
│ │ │ │ ├── LargeSymbolDraw.js
│ │ │ │ ├── LineDraw.js
│ │ │ │ ├── Line.js
│ │ │ │ ├── LinePath.js
│ │ │ │ ├── Polyline.js
│ │ │ │ ├── SymbolDraw.js
│ │ │ │ ├── Symbol.js
│ │ │ │ ├── whiskerBoxCommon.js
│ │ │ │ └── WhiskerBoxDraw.js
│ │ │ ├── line
│ │ │ │ ├── lineAnimationDiff.js
│ │ │ │ ├── LineSeries.js
│ │ │ │ ├── LineView.js
│ │ │ │ └── poly.js
│ │ │ ├── line.js
│ │ │ ├── lines
│ │ │ │ ├── linesLayout.js
│ │ │ │ ├── LinesSeries.js
│ │ │ │ ├── LinesView.js
│ │ │ │ └── linesVisual.js
│ │ │ ├── lines.js
│ │ │ ├── map
│ │ │ │ ├── backwardCompat.js
│ │ │ │ ├── mapDataStatistic.js
│ │ │ │ ├── MapSeries.js
│ │ │ │ ├── mapSymbolLayout.js
│ │ │ │ ├── MapView.js
│ │ │ │ └── mapVisual.js
│ │ │ ├── map.js
│ │ │ ├── parallel
│ │ │ │ ├── ParallelSeries.js
│ │ │ │ ├── ParallelView.js
│ │ │ │ └── parallelVisual.js
│ │ │ ├── parallel.js
│ │ │ ├── pictorialBar.js
│ │ │ ├── pie
│ │ │ │ ├── labelLayout.js
│ │ │ │ ├── pieLayout.js
│ │ │ │ ├── PieSeries.js
│ │ │ │ └── PieView.js
│ │ │ ├── pie.js
│ │ │ ├── radar
│ │ │ │ ├── backwardCompat.js
│ │ │ │ ├── radarLayout.js
│ │ │ │ ├── RadarSeries.js
│ │ │ │ └── RadarView.js
│ │ │ ├── radar.js
│ │ │ ├── sankey
│ │ │ │ ├── sankeyLayout.js
│ │ │ │ ├── SankeySeries.js
│ │ │ │ ├── SankeyView.js
│ │ │ │ └── sankeyVisual.js
│ │ │ ├── sankey.js
│ │ │ ├── scatter
│ │ │ │ ├── ScatterSeries.js
│ │ │ │ └── ScatterView.js
│ │ │ ├── scatter.js
│ │ │ ├── themeRiver
│ │ │ │ ├── themeRiverLayout.js
│ │ │ │ ├── ThemeRiverSeries.js
│ │ │ │ ├── ThemeRiverView.js
│ │ │ │ └── themeRiverVisual.js
│ │ │ ├── themeRiver.js
│ │ │ ├── treemap
│ │ │ │ ├── Breadcrumb.js
│ │ │ │ ├── helper.js
│ │ │ │ ├── treemapAction.js
│ │ │ │ ├── treemapLayout.js
│ │ │ │ ├── TreemapSeries.js
│ │ │ │ ├── TreemapView.js
│ │ │ │ └── treemapVisual.js
│ │ │ └── treemap.js
│ │ ├── component
│ │ │ ├── angleAxis.js
│ │ │ ├── axis
│ │ │ │ ├── AngleAxisView.js
│ │ │ │ ├── AxisBuilder.js
│ │ │ │ ├── AxisView.js
│ │ │ │ ├── cartesianAxisHelper.js
│ │ │ │ ├── CartesianAxisView.js
│ │ │ │ ├── parallelAxisAction.js
│ │ │ │ ├── ParallelAxisView.js
│ │ │ │ ├── RadiusAxisView.js
│ │ │ │ ├── singleAxisHelper.js
│ │ │ │ └── SingleAxisView.js
│ │ │ ├── axis.js
│ │ │ ├── axisPointer
│ │ │ │ ├── AxisPointerModel.js
│ │ │ │ ├── AxisPointerView.js
│ │ │ │ ├── axisTrigger.js
│ │ │ │ ├── BaseAxisPointer.js
│ │ │ │ ├── CartesianAxisPointer.js
│ │ │ │ ├── findPointFromSeries.js
│ │ │ │ ├── globalListener.js
│ │ │ │ ├── IAxisPointer
│ │ │ │ ├── modelHelper.js
│ │ │ │ ├── PolarAxisPointer.js
│ │ │ │ ├── SingleAxisPointer.js
│ │ │ │ └── viewHelper.js
│ │ │ ├── axisPointer.js
│ │ │ ├── brush
│ │ │ │ ├── brushAction.js
│ │ │ │ ├── BrushModel.js
│ │ │ │ ├── BrushView.js
│ │ │ │ ├── preprocessor.js
│ │ │ │ ├── selector.js
│ │ │ │ └── visualEncoding.js
│ │ │ ├── brush.js
│ │ │ ├── calendar
│ │ │ │ └── CalendarView.js
│ │ │ ├── calendar.js
│ │ │ ├── dataZoom
│ │ │ │ ├── AxisProxy.js
│ │ │ │ ├── dataZoomAction.js
│ │ │ │ ├── DataZoomModel.js
│ │ │ │ ├── dataZoomProcessor.js
│ │ │ │ ├── DataZoomView.js
│ │ │ │ ├── helper.js
│ │ │ │ ├── history.js
│ │ │ │ ├── InsideZoomModel.js
│ │ │ │ ├── InsideZoomView.js
│ │ │ │ ├── roams.js
│ │ │ │ ├── SelectZoomModel.js
│ │ │ │ ├── SelectZoomView.js
│ │ │ │ ├── SliderZoomModel.js
│ │ │ │ ├── SliderZoomView.js
│ │ │ │ └── typeDefaulter.js
│ │ │ ├── dataZoomInside.js
│ │ │ ├── dataZoom.js
│ │ │ ├── dataZoomSelect.js
│ │ │ ├── geo
│ │ │ │ └── GeoView.js
│ │ │ ├── geo.js
│ │ │ ├── graphic.js
│ │ │ ├── grid.js
│ │ │ ├── gridSimple.js
│ │ │ ├── helper
│ │ │ │ ├── BrushController.js
│ │ │ │ ├── brushHelper.js
│ │ │ │ ├── BrushTargetManager.js
│ │ │ │ ├── cursorHelper.js
│ │ │ │ ├── interactionMutex.js
│ │ │ │ ├── listComponent.js
│ │ │ │ ├── MapDraw.js
│ │ │ │ ├── RoamController.js
│ │ │ │ ├── roamHelper.js
│ │ │ │ ├── selectableMixin.js
│ │ │ │ └── sliderMove.js
│ │ │ ├── legend
│ │ │ │ ├── legendAction.js
│ │ │ │ ├── legendFilter.js
│ │ │ │ ├── LegendModel.js
│ │ │ │ ├── LegendView.js
│ │ │ │ ├── scrollableLegendAction.js
│ │ │ │ ├── ScrollableLegendModel.js
│ │ │ │ └── ScrollableLegendView.js
│ │ │ ├── legend.js
│ │ │ ├── legendScroll.js
│ │ │ ├── markArea.js
│ │ │ ├── marker
│ │ │ │ ├── MarkAreaModel.js
│ │ │ │ ├── MarkAreaView.js
│ │ │ │ ├── markerHelper.js
│ │ │ │ ├── MarkerModel.js
│ │ │ │ ├── MarkerView.js
│ │ │ │ ├── MarkLineModel.js
│ │ │ │ ├── MarkLineView.js
│ │ │ │ ├── MarkPointModel.js
│ │ │ │ └── MarkPointView.js
│ │ │ ├── markLine.js
│ │ │ ├── markPoint.js
│ │ │ ├── parallelAxis.js
│ │ │ ├── parallel.js
│ │ │ ├── polar.js
│ │ │ ├── radar
│ │ │ │ └── RadarView.js
│ │ │ ├── radar.js
│ │ │ ├── radiusAxis.js
│ │ │ ├── singleAxis.js
│ │ │ ├── timeline
│ │ │ │ ├── preprocessor.js
│ │ │ │ ├── SliderTimelineModel.js
│ │ │ │ ├── SliderTimelineView.js
│ │ │ │ ├── timelineAction.js
│ │ │ │ ├── TimelineAxis.js
│ │ │ │ ├── TimelineModel.js
│ │ │ │ ├── TimelineView.js
│ │ │ │ └── typeDefaulter.js
│ │ │ ├── timeline.js
│ │ │ ├── title.js
│ │ │ ├── toolbox
│ │ │ │ ├── feature
│ │ │ │ │ ├── Brush.js
│ │ │ │ │ ├── DataView.js
│ │ │ │ │ ├── DataZoom.js
│ │ │ │ │ ├── MagicType.js
│ │ │ │ │ ├── Restore.js
│ │ │ │ │ └── SaveAsImage.js
│ │ │ │ ├── featureManager.js
│ │ │ │ ├── ToolboxModel.js
│ │ │ │ └── ToolboxView.js
│ │ │ ├── toolbox.js
│ │ │ ├── tooltip
│ │ │ │ ├── TooltipContent.js
│ │ │ │ ├── TooltipModel.js
│ │ │ │ └── TooltipView.js
│ │ │ ├── tooltip.js
│ │ │ ├── visualMap
│ │ │ │ ├── ContinuousModel.js
│ │ │ │ ├── ContinuousView.js
│ │ │ │ ├── helper.js
│ │ │ │ ├── PiecewiseModel.js
│ │ │ │ ├── PiecewiseView.js
│ │ │ │ ├── preprocessor.js
│ │ │ │ ├── typeDefaulter.js
│ │ │ │ ├── visualEncoding.js
│ │ │ │ ├── visualMapAction.js
│ │ │ │ ├── VisualMapModel.js
│ │ │ │ └── VisualMapView.js
│ │ │ ├── visualMapContinuous.js
│ │ │ ├── visualMap.js
│ │ │ └── visualMapPiecewise.js
│ │ ├── coord
│ │ │ ├── axisDefault.js
│ │ │ ├── axisHelper.js
│ │ │ ├── Axis.js
│ │ │ ├── axisModelCommonMixin.js
│ │ │ ├── axisModelCreator.js
│ │ │ ├── calendar
│ │ │ │ ├── Calendar.js
│ │ │ │ ├── CalendarModel.js
│ │ │ │ └── prepareCustom.js
│ │ │ ├── cartesian
│ │ │ │ ├── Axis2D.js
│ │ │ │ ├── AxisModel.js
│ │ │ │ ├── Cartesian2D.js
│ │ │ │ ├── Cartesian.js
│ │ │ │ ├── Grid.js
│ │ │ │ ├── GridModel.js
│ │ │ │ └── prepareCustom.js
│ │ │ ├── geo
│ │ │ │ ├── fix
│ │ │ │ │ ├── diaoyuIsland.js
│ │ │ │ │ ├── geoCoord.js
│ │ │ │ │ ├── nanhai.js
│ │ │ │ │ └── textCoord.js
│ │ │ │ ├── geoCreator.js
│ │ │ │ ├── Geo.js
│ │ │ │ ├── GeoModel.js
│ │ │ │ ├── parseGeoJson.js
│ │ │ │ ├── prepareCustom.js
│ │ │ │ └── Region.js
│ │ │ ├── ICoordinateSystem
│ │ │ ├── parallel
│ │ │ │ ├── AxisModel.js
│ │ │ │ ├── ParallelAxis.js
│ │ │ │ ├── parallelCreator.js
│ │ │ │ ├── Parallel.js
│ │ │ │ ├── ParallelModel.js
│ │ │ │ └── parallelPreprocessor.js
│ │ │ ├── polar
│ │ │ │ ├── AngleAxis.js
│ │ │ │ ├── AxisModel.js
│ │ │ │ ├── polarCreator.js
│ │ │ │ ├── Polar.js
│ │ │ │ ├── PolarModel.js
│ │ │ │ ├── prepareCustom.js
│ │ │ │ └── RadiusAxis.js
│ │ │ ├── radar
│ │ │ │ ├── IndicatorAxis.js
│ │ │ │ ├── Radar.js
│ │ │ │ └── RadarModel.js
│ │ │ ├── single
│ │ │ │ ├── AxisModel.js
│ │ │ │ ├── prepareCustom.js
│ │ │ │ ├── SingleAxis.js
│ │ │ │ ├── singleCreator.js
│ │ │ │ └── Single.js
│ │ │ └── View.js
│ │ ├── CoordinateSystem.js
│ │ ├── data
│ │ │ ├── DataDiffer.js
│ │ │ ├── Graph.js
│ │ │ ├── helper
│ │ │ │ ├── completeDimensions.js
│ │ │ │ └── linkList.js
│ │ │ ├── List.js
│ │ │ └── Tree.js
│ │ ├── echarts.js
│ │ ├── ExtensionAPI.js
│ │ ├── helper.js
│ │ ├── layout
│ │ │ ├── barGrid.js
│ │ │ ├── barPolar.js
│ │ │ └── points.js
│ │ ├── loading
│ │ │ └── default.js
│ │ ├── model
│ │ │ ├── Component.js
│ │ │ ├── globalDefault.js
│ │ │ ├── Global.js
│ │ │ ├── mixin
│ │ │ │ ├── areaStyle.js
│ │ │ │ ├── boxLayout.js
│ │ │ │ ├── colorPalette.js
│ │ │ │ ├── itemStyle.js
│ │ │ │ ├── lineStyle.js
│ │ │ │ ├── makeStyleMapper.js
│ │ │ │ └── textStyle.js
│ │ │ ├── Model.js
│ │ │ ├── OptionManager.js
│ │ │ └── Series.js
│ │ ├── preprocessor
│ │ │ ├── backwardCompat.js
│ │ │ └── helper
│ │ │ └── compatStyle.js
│ │ ├── processor
│ │ │ ├── dataFilter.js
│ │ │ └── dataSample.js
│ │ ├── scale
│ │ │ ├── helper.js
│ │ │ ├── Interval.js
│ │ │ ├── Log.js
│ │ │ ├── Ordinal.js
│ │ │ ├── Scale.js
│ │ │ └── Time.js
│ │ ├── util
│ │ │ ├── animation.js
│ │ │ ├── array
│ │ │ │ └── nest.js
│ │ │ ├── clazz.js
│ │ │ ├── component.js
│ │ │ ├── format.js
│ │ │ ├── graphic.js
│ │ │ ├── KDTree.js
│ │ │ ├── layout.js
│ │ │ ├── model.js
│ │ │ ├── number.js
│ │ │ ├── quickSelect.js
│ │ │ ├── symbol.js
│ │ │ └── throttle.js
│ │ ├── view
│ │ │ ├── Chart.js
│ │ │ └── Component.js
│ │ └── visual
│ │ ├── dataColor.js
│ │ ├── seriesColor.js
│ │ ├── symbol.js
│ │ ├── visualDefault.js
│ │ ├── VisualMapping.js
│ │ └── visualSolution.js
│ ├── test
│ │ ├── allZero.html
│ │ ├── area2.html
│ │ ├── area.html
│ │ ├── area-large.html
│ │ ├── areaLineUpdate.html
│ │ ├── axes.html
│ │ ├── axis-boundaryGap.html
│ │ ├── axis-extrema.html
│ │ ├── axis.html
│ │ ├── axis-lastLabel.html
│ │ ├── axisPosition.html
│ │ ├── bar2.html
│ │ ├── bar3.html
│ │ ├── bar.html
│ │ ├── bar-label-rotation.html
│ │ ├── bar-large.html
│ │ ├── bar-polar-basic.html
│ │ ├── bar-polar-basic-radial.html
│ │ ├── bar-polar-multi-series.html
│ │ ├── bar-polar-multi-series-radial.html
│ │ ├── bar-polar-null-data.html
│ │ ├── bar-polar-null-data-radial.html
│ │ ├── bar-polar-real-estate.html
│ │ ├── bar-polar-stack.html
│ │ ├── bmap.html
│ │ ├── boxplot.html
│ │ ├── boxplot-multi.html
│ │ ├── brush2.html
│ │ ├── brush.html
│ │ ├── calendar-converter.html
│ │ ├── calendar-effectScater.html
│ │ ├── calendar-graph.html
│ │ ├── calendar-heatmap.html
│ │ ├── calendar.html
│ │ ├── calendar-month.html
│ │ ├── calendar-more.html
│ │ ├── calendar-orient.html
│ │ ├── calendar-range.html
│ │ ├── calendar-scatter.html
│ │ ├── calendar-simple.html
│ │ ├── calendar-size.html
│ │ ├── calendar-split.html
│ │ ├── calendar-type.html
│ │ ├── calendar-vertical.html
│ │ ├── calendar-week.html
│ │ ├── calendar-year.html
│ │ ├── candlestickConnect.html
│ │ ├── candlestick-empty.html
│ │ ├── candlestick.html
│ │ ├── canvas-replay.html
│ │ ├── chord.html
│ │ ├── circle-packing-with-d3.html
│ │ ├── color-mix-aqi.html
│ │ ├── config.js
│ │ ├── connect2.html
│ │ ├── connect-dynamic.html
│ │ ├── connect.html
│ │ ├── connect-manually.html
│ │ ├── css-transform.html
│ │ ├── custom-bmap-grid.html
│ │ ├── custom-bmap-polygon.html
│ │ ├── custom-children-remove.html
│ │ ├── custom-hexbin.html
│ │ ├── custom.html
│ │ ├── data
│ │ │ ├── aqi
│ │ │ │ ├── BJdata.js
│ │ │ │ ├── GZdata.js
│ │ │ │ ├── processAQI.js
│ │ │ │ └── SHdata.js
│ │ │ ├── disk.tree.js
│ │ │ ├── energy.json
│ │ │ ├── flare.csv
│ │ │ ├── handle2.png
│ │ │ ├── handle.png
│ │ │ ├── hangzhou-tracks.json
│ │ │ ├── hill-Kilimanjaro.png
│ │ │ ├── hill-Qomolangma.png
│ │ │ ├── iphone.png
│ │ │ ├── kawhi-leonard-16-17-regular.json
│ │ │ ├── les-miserables.gexf
│ │ │ ├── life-expectancy.json
│ │ │ ├── lines-bus.json
│ │ │ ├── masterPainterColorChoice.json
│ │ │ ├── Michelson-Morley.json.js
│ │ │ ├── nba-court-geo.json
│ │ │ ├── nba-court.json
│ │ │ ├── nutrients.json
│ │ │ ├── obama_budget_proposal_2012.tree.js
│ │ │ ├── option-view2.json
│ │ │ ├── option-view.json
│ │ │ ├── pie-texture.js
│ │ │ ├── product.json
│ │ │ ├── rainfall.json.js
│ │ │ ├── security-sh-2013.json.js
│ │ │ ├── stock-DJI.json.js
│ │ │ ├── symbols.js
│ │ │ └── timelineGDP.js
│ │ ├── dataView.html
│ │ ├── dataZoom-axes.html
│ │ ├── dataZoom-axis-type.html
│ │ ├── dataZoom-cartesian-h.html
│ │ ├── dataZoom-cartesian-v.html
│ │ ├── dataZoom-dataShadow0.html
│ │ ├── dataZoom-dataShadow1.html
│ │ ├── dataZoom-dataShadow2.html
│ │ ├── dataZoom-dataShadow.html
│ │ ├── dataZoom-dynamic.html
│ │ ├── dataZoom-geo.html
│ │ ├── dataZoomHighPrecision.html
│ │ ├── dataZoom-rainfall-connect.html
│ │ ├── dataZoom-rainfall.html
│ │ ├── dataZoom-rainfall-inside.html
│ │ ├── dataZoom-scatter-category.html
│ │ ├── dataZoom-scatter-hv.html
│ │ ├── dataZoom-scatter-hv-polar.html
│ │ ├── dataZoom-sync.html
│ │ ├── dataZoom-toolbox.html
│ │ ├── diff.html
│ │ ├── dynamicData2.html
│ │ ├── dynamicData3.html
│ │ ├── dynamicData.html
│ │ ├── effectScatter.html
│ │ ├── encode.html
│ │ ├── esl.js
│ │ ├── force2.html
│ │ ├── force3.html
│ │ ├── force.html
│ │ ├── funnel.html
│ │ ├── gauge.html
│ │ ├── geoLine.html
│ │ ├── geo-map.html
│ │ ├── geoScatter.html
│ │ ├── getOption.html
│ │ ├── graph-grid.html
│ │ ├── graph.html
│ │ ├── graphicOption.html
│ │ ├── graph-simple.html
│ │ ├── gridSimple.html
│ │ ├── heatmap.html
│ │ ├── heatmap-large.html
│ │ ├── heatmap-map.html
│ │ ├── homepage3.html
│ │ ├── homepage3.js
│ │ ├── ie11.html
│ │ ├── ie8.html
│ │ ├── label-position.html
│ │ ├── largeLine.html
│ │ ├── largeLine-tooltip.html
│ │ ├── largeScatterWithEmpty.html
│ │ ├── lazyUpdate.html
│ │ ├── legend.html
│ │ ├── lib
│ │ │ ├── dat.gui.min.js
│ │ │ ├── draggable.js
│ │ │ ├── facePrint.js
│ │ │ ├── jquery.min.js
│ │ │ ├── perlin.js
│ │ │ └── testHelper.js
│ │ ├── line.html
│ │ ├── lines-bus.html
│ │ ├── lines-symbol.html
│ │ ├── lines-track.html
│ │ ├── line-visual.html
│ │ ├── loading.html
│ │ ├── logScale.html
│ │ ├── map-contour.html
│ │ ├── map-grid.html
│ │ ├── map.html
│ │ ├── map-parallel.html
│ │ ├── mapWorld.html
│ │ ├── markArea.html
│ │ ├── markLine.html
│ │ ├── markPoint.html
│ │ ├── masterPainterColorChoice.html
│ │ ├── media-dataZoom.html
│ │ ├── media-finance.html
│ │ ├── media-pie.html
│ │ ├── minInterval.html
│ │ ├── min-max-function.html
│ │ ├── mix.html
│ │ ├── mobileBench.html
│ │ ├── multipleGrid.html
│ │ ├── parallel-aqi.html
│ │ ├── parallel-lineStyle.html
│ │ ├── parallel-nutrients.html
│ │ ├── pictorial-repeat.html
│ │ ├── pictorial-single.html
│ │ ├── pie2.html
│ │ ├── pie3.html
│ │ ├── pie-action.html
│ │ ├── pie-calculable.html
│ │ ├── pie-digits.html
│ │ ├── pieDynamic.html
│ │ ├── pie.html
│ │ ├── polarLine2.html
│ │ ├── polarLine.html
│ │ ├── polarScatter.html
│ │ ├── -primary-cases.html
│ │ ├── punchCard.html
│ │ ├── radar2.html
│ │ ├── radar3.html
│ │ ├── radar4.html
│ │ ├── radar.html
│ │ ├── README.md
│ │ ├── reset.css
│ │ ├── roseExtreme.html
│ │ ├── roseType.html
│ │ ├── sankey.html
│ │ ├── scale-integer.html
│ │ ├── scatter.html
│ │ ├── scatterMatrix.html
│ │ ├── scatter-single-axis.html
│ │ ├── selectedMode.html
│ │ ├── showTip.html
│ │ ├── singleAxisScales.html
│ │ ├── symbol.html
│ │ ├── theme.html
│ │ ├── themeRiver2.html
│ │ ├── themeRiver.html
│ │ ├── timeline-finance.html
│ │ ├── timeline-layout.html
│ │ ├── timeScale2.html
│ │ ├── timeScale.html
│ │ ├── timeZone.html
│ │ ├── tooltip-action.html
│ │ ├── tooltip-axisPointer.html
│ │ ├── tooltip-cascade.html
│ │ ├── tooltip.html
│ │ ├── tooltip-link.html
│ │ ├── tooltip-setOption.html
│ │ ├── tooltipTestHelper.js
│ │ ├── tooltip-touch.html
│ │ ├── touch-candlestick.html
│ │ ├── touch-slide.html
│ │ ├── touch-test.html
│ │ ├── treemap-disk2.html
│ │ ├── treemap-disk.html
│ │ ├── treemap-obama.html
│ │ ├── treemap-option2.html
│ │ ├── treemap-option.html
│ │ ├── treemap-simple.html
│ │ ├── treemap-visual.html
│ │ ├── ut
│ │ │ ├── config.js
│ │ │ ├── configure
│ │ │ ├── core
│ │ │ │ ├── uiHelper.js
│ │ │ │ └── utHelper.js
│ │ │ ├── lib
│ │ │ │ ├── canteen.js
│ │ │ │ ├── imagediff.js
│ │ │ │ └── jasmine-2.3.4
│ │ │ │ ├── boot.js
│ │ │ │ ├── jasmine.css
│ │ │ │ ├── jasmine_favicon.png
│ │ │ │ ├── jasmine-html.js
│ │ │ │ └── jasmine.js
│ │ │ ├── MIT.LICENSE
│ │ │ ├── spec
│ │ │ │ ├── api
│ │ │ │ │ ├── containPixel.js
│ │ │ │ │ ├── converter.js
│ │ │ │ │ └── getVisual.js
│ │ │ │ ├── component
│ │ │ │ │ ├── dataZoom
│ │ │ │ │ │ └── helper.js
│ │ │ │ │ ├── graphic
│ │ │ │ │ │ └── setOption.js
│ │ │ │ │ ├── helper
│ │ │ │ │ │ └── sliderMove.js
│ │ │ │ │ └── visualMap
│ │ │ │ │ └── setOption.js
│ │ │ │ ├── data
│ │ │ │ │ ├── completeDimensions.js
│ │ │ │ │ └── List.js
│ │ │ │ ├── model
│ │ │ │ │ ├── Component.js
│ │ │ │ │ ├── Global.js
│ │ │ │ │ └── timelineOptions.js
│ │ │ │ ├── scale
│ │ │ │ │ └── interval.js
│ │ │ │ ├── ui
│ │ │ │ │ ├── axis.boundaryGap.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── legend.js
│ │ │ │ │ ├── series.bar.js
│ │ │ │ │ ├── title.js
│ │ │ │ │ ├── title.subtextStyle.js
│ │ │ │ │ └── title.textStyle.js
│ │ │ │ └── util
│ │ │ │ ├── graphic.js
│ │ │ │ ├── layout.js
│ │ │ │ ├── model.js
│ │ │ │ └── number.js
│ │ │ ├── ui.html
│ │ │ ├── ut.html
│ │ │ └── ut.js
│ │ ├── visualMap-categories.html
│ │ ├── visualMap-continuous.html
│ │ ├── visualMap-layout.html
│ │ ├── visualMap-opacity.html
│ │ ├── visualMap-pieces.html
│ │ ├── visualMap-scatter-colorAndSymbol.html
│ │ ├── visualMap-scatter-symbolSize.html
│ │ ├── visualMap-special-case.html
│ │ ├── webkit-dep.html
│ │ └── worldPopulationBubble.html
│ ├── theme
│ │ ├── dark.js
│ │ ├── infographic.js
│ │ ├── macarons.js
│ │ ├── roma.js
│ │ ├── shine.js
│ │ ├── tool
│ │ │ ├── option
│ │ │ │ ├── area.js
│ │ │ │ ├── bar.js
│ │ │ │ ├── graph.js
│ │ │ │ ├── map.js
│ │ │ │ ├── pie.js
│ │ │ │ └── scatter.js
│ │ │ └── thumb.js
│ │ └── vintage.js
│ └── webpack.config.js
└── zrender
├── build
│ ├── amd2common.bundle.js
│ ├── build.js
│ ├── build.sh
│ ├── r.js
│ ├── zrender.js
│ └── zrender.min.js
├── doc
│ └── jsdoc-tmpl
│ ├── conf.json
│ ├── Gruntfile.js
│ ├── less
│ │ ├── common.less
│ │ ├── footer.less
│ │ ├── jaguar.less
│ │ ├── main.less
│ │ └── navigation.less
│ ├── LICENSE
│ ├── package.json
│ ├── publish.js
│ ├── README.md
│ ├── static
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── scripts
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.min.map
│ │ │ ├── linenumber.js
│ │ │ ├── main.js
│ │ │ ├── prettify
│ │ │ │ ├── Apache-License-2.0.txt
│ │ │ │ ├── lang-css.js
│ │ │ │ └── prettify.js
│ │ │ ├── underscore-min.js
│ │ │ └── underscore-min.map
│ │ └── styles
│ │ ├── bootstrap.min.css
│ │ ├── jaguar.css
│ │ ├── prettify-jsdoc.css
│ │ └── prettify-tomorrow.css
│ └── tmpl
│ ├── container.tmpl
│ ├── details.tmpl
│ ├── examples.tmpl
│ ├── example.tmpl
│ ├── exceptions.tmpl
│ ├── layout.tmpl
│ ├── mainpage.tmpl
│ ├── members.tmpl
│ ├── method.tmpl
│ ├── navigation.tmpl
│ ├── params.tmpl
│ ├── properties.tmpl
│ ├── returns.tmpl
│ ├── source.tmpl
│ ├── tutorial.tmpl
│ └── type.tmpl
├── jsdoc.json
├── LICENSE
├── package.json
├── README.md
├── src
│ ├── animation
│ │ ├── Animation.js
│ │ ├── Animator.js
│ │ ├── Clip.js
│ │ ├── easing.js
│ │ └── requestAnimationFrame.js
│ ├── config.js
│ ├── contain
│ │ ├── arc.js
│ │ ├── cubic.js
│ │ ├── line.js
│ │ ├── path.js
│ │ ├── polygon.js
│ │ ├── quadratic.js
│ │ ├── text.js
│ │ ├── util.js
│ │ └── windingLine.js
│ ├── container
│ │ └── Group.js
│ ├── core
│ │ ├── arrayDiff.js
│ │ ├── bbox.js
│ │ ├── BoundingRect.js
│ │ ├── curve.js
│ │ ├── env.js
│ │ ├── event.js
│ │ ├── GestureMgr.js
│ │ ├── guid.js
│ │ ├── log.js
│ │ ├── LRU.js
│ │ ├── matrix.js
│ │ ├── PathProxy.js
│ │ ├── timsort.js
│ │ ├── util.js
│ │ └── vector.js
│ ├── dom
│ │ └── HandlerProxy.js
│ ├── Element.js
│ ├── graphic
│ │ ├── CompoundPath.js
│ │ ├── Displayable.js
│ │ ├── Gradient.js
│ │ ├── helper
│ │ │ ├── fixClipWithShadow.js
│ │ │ ├── image.js
│ │ │ ├── poly.js
│ │ │ ├── roundRect.js
│ │ │ ├── smoothBezier.js
│ │ │ ├── smoothSpline.js
│ │ │ └── text.js
│ │ ├── Image.js
│ │ ├── LinearGradient.js
│ │ ├── mixin
│ │ │ ├── RectText.js
│ │ │ └── Stateful.js
│ │ ├── Path.js
│ │ ├── Pattern.js
│ │ ├── RadialGradient.js
│ │ ├── shape
│ │ │ ├── Arc.js
│ │ │ ├── BezierCurve.js
│ │ │ ├── Circle.js
│ │ │ ├── Droplet.js
│ │ │ ├── Ellipse.js
│ │ │ ├── Heart.js
│ │ │ ├── Isogon.js
│ │ │ ├── Line.js
│ │ │ ├── Polygon.js
│ │ │ ├── Polyline.js
│ │ │ ├── Rect.js
│ │ │ ├── Ring.js
│ │ │ ├── Rose.js
│ │ │ ├── Sector.js
│ │ │ ├── Star.js
│ │ │ └── Trochoid.js
│ │ ├── States.js
│ │ ├── Style.js
│ │ └── Text.js
│ ├── Handler.js
│ ├── Layer.js
│ ├── mixin
│ │ ├── Animatable.js
│ │ ├── Draggable.js
│ │ ├── Eventful.js
│ │ └── Transformable.js
│ ├── Painter.js
│ ├── Storage.js
│ ├── svg
│ │ ├── core.js
│ │ ├── graphic.js
│ │ ├── Painter.js
│ │ └── svg.js
│ ├── tool
│ │ ├── color.js
│ │ ├── path.js
│ │ └── transformPath.js
│ ├── vml
│ │ ├── core.js
│ │ ├── graphic.js
│ │ ├── Painter.js
│ │ └── vml.js
│ └── zrender.js
└── test
├── animation2.html
├── animation.html
├── animationStart.html
├── arrDiff.html
├── barAnimation.html
├── benchmark.html
├── benchmark-svg.html
├── bezier.html
├── boundingbox.html
├── camera.html
├── circlePolygonTransition.html
├── clipping.html
├── cubic.html
├── curves.html
├── dashedLine.html
├── data
│ ├── hill-Kilimanjaro.png
│ └── hill-Qomolangma.png
├── esl.js
├── event_bubbling.html
├── event.html
├── gradient.svg
├── group.html
├── horizontalLine.html
├── hoverLayer.html
├── image.html
├── lookAt.html
├── lru.js
├── orbit2.html
├── orbit.html
├── pathContain.html
├── pathMerge.html
├── performance.html
├── pin.html
├── progressive.html
├── rectText.html
├── sector.html
├── singleCanvas.html
├── smoothline.html
├── states.html
├── stats.js
├── svg-arc.html
├── svg-clip.html
├── svg.html
├── svg-text.html
├── text.html
└── ut
├── core
│ ├── config.js
│ ├── esl.js
│ └── utHelper.js
├── lib
│ └── jasmine-2.3.4
│ ├── boot.js
│ ├── jasmine.css
│ ├── jasmine-html.js
│ └── jasmine.js
├── spec
│ └── core
│ └── util.js
├── ut.html
└── ut.js
140 directories, 991 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论