实例介绍
echarts的例子,所有的报表,图形,都在这里面,直接拿就可以用
【实例截图】
【核心代码】
incubator-echarts-master
└── incubator-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
│ ├── addHeader.js
│ ├── amd2common.js
│ ├── build.js
│ ├── config.js
│ ├── mangleString.js
│ ├── optimize.js
│ ├── preamble.js
│ ├── pre-publish.js
│ ├── rollup-plugin-ec-lang.js
│ └── rollup-plugin-ec-remove-dev.js
├── DISCLAIMER
├── dist
│ ├── echarts.common.js
│ ├── echarts.common.min.js
│ ├── echarts-en.common.js
│ ├── echarts-en.common.min.js
│ ├── echarts-en.js
│ ├── echarts-en.js.map
│ ├── echarts-en.min.js
│ ├── echarts-en.simple.js
│ ├── echarts-en.simple.min.js
│ ├── echarts.js
│ ├── echarts.js.map
│ ├── echarts.min.js
│ ├── echarts.simple.js
│ ├── echarts.simple.min.js
│ └── extension
│ ├── bmap.js
│ ├── bmap.js.map
│ ├── bmap.min.js
│ ├── dataTool.js
│ ├── dataTool.js.map
│ └── dataTool.min.js
├── echarts.all.js
├── echarts.blank.js
├── echarts.common.js
├── echarts.simple.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
├── extension-src
│ ├── bmap
│ │ ├── BMapCoordSys.js
│ │ ├── bmap.js
│ │ ├── BMapModel.js
│ │ └── BMapView.js
│ └── dataTool
│ ├── gexf.js
│ ├── index.js
│ └── prepareBoxplotData.js
├── index.common.js
├── index.js
├── index.simple.js
├── KEYS
├── LICENSE
├── licenses
│ └── LICENSE-d3
├── 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
├── NOTICE
├── 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
│ │ │ ├── simpleLayoutHelper.js
│ │ │ └── simpleLayout.js
│ │ ├── graph.js
│ │ ├── heatmap
│ │ │ ├── HeatmapLayer.js
│ │ │ ├── HeatmapSeries.js
│ │ │ └── HeatmapView.js
│ │ ├── heatmap.js
│ │ ├── helper
│ │ │ ├── createGraphFromNodeEdge.js
│ │ │ ├── createGraphFromNodeMatrix.js
│ │ │ ├── createListFromArray.js
│ │ │ ├── createListSimply.js
│ │ │ ├── createRenderPlanner.js
│ │ │ ├── EffectLine.js
│ │ │ ├── EffectPolyline.js
│ │ │ ├── EffectSymbol.js
│ │ │ ├── focusNodeAdjacencyAction.js
│ │ │ ├── labelHelper.js
│ │ │ ├── LargeLineDraw.js
│ │ │ ├── LargeSymbolDraw.js
│ │ │ ├── LineDraw.js
│ │ │ ├── Line.js
│ │ │ ├── LinePath.js
│ │ │ ├── Polyline.js
│ │ │ ├── SymbolDraw.js
│ │ │ ├── Symbol.js
│ │ │ ├── treeHelper.js
│ │ │ └── whiskerBoxCommon.js
│ │ ├── line
│ │ │ ├── helper.js
│ │ │ ├── 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
│ │ │ ├── sankeyAction.js
│ │ │ ├── sankeyLayout.js
│ │ │ ├── SankeySeries.js
│ │ │ ├── SankeyView.js
│ │ │ └── sankeyVisual.js
│ │ ├── sankey.js
│ │ ├── scatter
│ │ │ ├── ScatterSeries.js
│ │ │ └── ScatterView.js
│ │ ├── scatter.js
│ │ ├── sunburst
│ │ │ ├── sunburstAction.js
│ │ │ ├── sunburstLayout.js
│ │ │ ├── SunburstPiece.js
│ │ │ ├── SunburstSeries.js
│ │ │ └── SunburstView.js
│ │ ├── sunburst.js
│ │ ├── themeRiver
│ │ │ ├── themeRiverLayout.js
│ │ │ ├── ThemeRiverSeries.js
│ │ │ ├── ThemeRiverView.js
│ │ │ └── themeRiverVisual.js
│ │ ├── themeRiver.js
│ │ ├── tree
│ │ │ ├── layoutHelper.js
│ │ │ ├── traversalHelper.js
│ │ │ ├── treeAction.js
│ │ │ ├── treeLayout.js
│ │ │ ├── TreeSeries.js
│ │ │ └── TreeView.js
│ │ ├── tree.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
│ │ │ ├── CartesianAxisView.js
│ │ │ ├── parallelAxisAction.js
│ │ │ ├── ParallelAxisView.js
│ │ │ ├── RadiusAxisView.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
│ │ ├── dataset.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
│ │ ├── dataZoomSlider.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
│ │ │ ├── TooltipRichContent.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
│ ├── config.js
│ ├── coord
│ │ ├── axisDefault.js
│ │ ├── axisHelper.js
│ │ ├── Axis.js
│ │ ├── axisModelCommonMixin.js
│ │ ├── axisModelCreator.js
│ │ ├── axisTickLabelBuilder.js
│ │ ├── calendar
│ │ │ ├── Calendar.js
│ │ │ ├── CalendarModel.js
│ │ │ └── prepareCustom.js
│ │ ├── cartesian
│ │ │ ├── Axis2D.js
│ │ │ ├── AxisModel.js
│ │ │ ├── Cartesian2D.js
│ │ │ ├── cartesianAxisHelper.js
│ │ │ ├── Cartesian.js
│ │ │ ├── Grid.js
│ │ │ ├── GridModel.js
│ │ │ └── prepareCustom.js
│ │ ├── geo
│ │ │ ├── fix
│ │ │ │ ├── diaoyuIsland.js
│ │ │ │ ├── geoCoord.js
│ │ │ │ ├── nanhai.js
│ │ │ │ └── textCoord.js
│ │ │ ├── geoCreator.js
│ │ │ ├── Geo.js
│ │ │ ├── geoJSONLoader.js
│ │ │ ├── GeoModel.js
│ │ │ ├── geoSourceManager.js
│ │ │ ├── geoSVGLoader.js
│ │ │ ├── mapDataStorage.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
│ │ │ ├── singleAxisHelper.js
│ │ │ ├── SingleAxis.js
│ │ │ ├── singleCreator.js
│ │ │ └── Single.js
│ │ └── View.js
│ ├── CoordinateSystem.js
│ ├── data
│ │ ├── DataDiffer.js
│ │ ├── Graph.js
│ │ ├── helper
│ │ │ ├── completeDimensions.js
│ │ │ ├── createDimensions.js
│ │ │ ├── dataProvider.js
│ │ │ ├── dataStackHelper.js
│ │ │ ├── dimensionHelper.js
│ │ │ ├── linkList.js
│ │ │ ├── sourceHelper.js
│ │ │ └── sourceType.js
│ │ ├── List.js
│ │ ├── OrdinalMeta.js
│ │ ├── Source.js
│ │ └── Tree.js
│ ├── echarts.js
│ ├── export.js
│ ├── ExtensionAPI.js
│ ├── helper.js
│ ├── langEN.js
│ ├── langFI.js
│ ├── lang.js
│ ├── langTH.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
│ │ │ ├── dataFormat.js
│ │ │ ├── itemStyle.js
│ │ │ ├── lineStyle.js
│ │ │ ├── makeStyleMapper.js
│ │ │ └── textStyle.js
│ │ ├── Model.js
│ │ ├── OptionManager.js
│ │ ├── referHelper.js
│ │ └── Series.js
│ ├── preprocessor
│ │ ├── backwardCompat.js
│ │ └── helper
│ │ └── compatStyle.js
│ ├── processor
│ │ ├── dataFilter.js
│ │ ├── dataSample.js
│ │ └── dataStack.js
│ ├── scale
│ │ ├── helper.js
│ │ ├── Interval.js
│ │ ├── Log.js
│ │ ├── Ordinal.js
│ │ ├── Scale.js
│ │ └── Time.js
│ ├── stream
│ │ ├── Scheduler.js
│ │ └── task.js
│ ├── theme
│ │ ├── dark.js
│ │ └── light.js
│ ├── util
│ │ ├── animation.js
│ │ ├── clazz.js
│ │ ├── component.js
│ │ ├── format.js
│ │ ├── graphic.js
│ │ ├── KDTree.js
│ │ ├── layout.js
│ │ ├── model.js
│ │ ├── nest.js
│ │ ├── number.js
│ │ ├── quickSelect.js
│ │ ├── symbol.js
│ │ └── throttle.js
│ ├── view
│ │ ├── Chart.js
│ │ └── Component.js
│ └── visual
│ ├── aria.js
│ ├── dataColor.js
│ ├── seriesColor.js
│ ├── symbol.js
│ ├── visualDefault.js
│ ├── VisualMapping.js
│ └── visualSolution.js
├── test
│ ├── allZero.html
│ ├── appendData.html
│ ├── area2.html
│ ├── area-large.html
│ ├── areaLineUpdate.html
│ ├── area-stack.html
│ ├── aria-line-bar.html
│ ├── aria-pie.html
│ ├── axes.html
│ ├── axis-arrow.html
│ ├── axis-boundaryGap.html
│ ├── axis-containLabel.html
│ ├── axis-extrema.html
│ ├── axis.html
│ ├── axis-interval2.html
│ ├── axis-interval.html
│ ├── axisLabel.html
│ ├── axis-lastLabel.html
│ ├── axis-multiple.html
│ ├── axisPosition.html
│ ├── axis-style.html
│ ├── bar2.html
│ ├── bar3.html
│ ├── bar.html
│ ├── bar-label-rotation.html
│ ├── bar-large.html
│ ├── bar-overflow-time-plot.html
│ ├── bar-polar-basic.html
│ ├── bar-polar-basic-radial.html
│ ├── bar-polar-long-label.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
│ ├── bar-stack.html
│ ├── bar-start.html
│ ├── bar-stream-large1.html
│ ├── bar-stream-large.html
│ ├── bar-t.html
│ ├── bmap.html
│ ├── boxplot.html
│ ├── boxplot-multi.html
│ ├── brush2.html
│ ├── brush3.html
│ ├── brush.html
│ ├── build
│ │ ├── esm2cjs
│ │ │ ├── expect
│ │ │ │ ├── basic.expect.js
│ │ │ │ ├── export-default0.expect.js
│ │ │ │ ├── export-default1.expect.js
│ │ │ │ ├── export-default2.expect.js
│ │ │ │ ├── export-default3.expect.js
│ │ │ │ └── forbiden-export.expect.js
│ │ │ └── src
│ │ │ ├── basic.src.js
│ │ │ ├── export-default0.src.js
│ │ │ ├── export-default1.src.js
│ │ │ ├── export-default2.src.js
│ │ │ ├── export-default3.src.js
│ │ │ └── forbiden-export.src.js
│ │ ├── removeDEV
│ │ │ ├── expect
│ │ │ │ └── code.expect.js
│ │ │ └── src
│ │ │ └── code.src.js
│ │ └── test-transform.js
│ ├── 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-doji.html
│ ├── candlestick-empty.html
│ ├── candlestick.html
│ ├── candlestick-large2.html
│ ├── candlestick-large3.html
│ ├── candlestick-large.html
│ ├── canvas-replay.html
│ ├── -cases.html
│ ├── -cases.js
│ ├── chord.html
│ ├── circle-packing-with-d3.html
│ ├── color-mix-aqi.html
│ ├── 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-feature.html
│ ├── custom-hexbin.html
│ ├── custom.html
│ ├── data
│ │ ├── aqi
│ │ │ ├── BJdata.js
│ │ │ ├── GZdata.js
│ │ │ ├── processAQI.js
│ │ │ └── SHdata.js
│ │ ├── czech_geo.json
│ │ ├── disk.tree.js
│ │ ├── ec-option-doc-statistics-201604.json
│ │ ├── ec-star.json
│ │ ├── energy.json
│ │ ├── flare.csv
│ │ ├── flare.json
│ │ ├── flight.json
│ │ ├── global-wind.json
│ │ ├── handle2.png
│ │ ├── handle.png
│ │ ├── hangzhou-tracks.json
│ │ ├── hill-Kilimanjaro.png
│ │ ├── hill-Qomolangma.png
│ │ ├── house-price-area2.json
│ │ ├── ice-bucket-challenge.json
│ │ ├── iphone.png
│ │ ├── kawhi-leonard-16-17-regular.json
│ │ ├── les-miserables.gexf
│ │ ├── life-expectancy.json
│ │ ├── life-expectancy-table.json
│ │ ├── lines-bus.json
│ │ ├── map_custom.js
│ │ ├── 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
│ │ ├── tree-simple2.json
│ │ ├── tree-simple.json
│ │ ├── weather
│ │ │ ├── cloudy_128.png
│ │ │ ├── showers_128.png
│ │ │ └── sunny_128.png
│ │ └── weibo.json
│ ├── dataset-category.html
│ ├── dataset-charts.html
│ ├── dataset-layout.html
│ ├── dataset-pivot.html
│ ├── dataView.html
│ ├── dataZoom-action.html
│ ├── dataZoom-axes.html
│ ├── dataZoom-axis-type.html
│ ├── dataZoom-cartesian-h.html
│ ├── dataZoom-cartesian-v.html
│ ├── dataZoom-clip.html
│ ├── dataZoom-dataShadow0.html
│ ├── dataZoom-dataShadow1.html
│ ├── dataZoom-dataShadow2.html
│ ├── dataZoom-dataShadow.html
│ ├── dataZoom-dynamic.html
│ ├── dataZoom-extreme.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-scroll.html
│ ├── dataZoom-sync.html
│ ├── dataZoom-toolbox.html
│ ├── diff.html
│ ├── dynamicData2.html
│ ├── dynamicData3.html
│ ├── dynamicData.html
│ ├── dynamic-splitNumber.html
│ ├── ec-event.html
│ ├── effectScatter.html
│ ├── encode.html
│ ├── finished-gl.html
│ ├── finished.html
│ ├── force2.html
│ ├── force3.html
│ ├── force-case.html
│ ├── force.html
│ ├── funnel.html
│ ├── gauge.html
│ ├── geo-data-stream.html
│ ├── geoLine.html
│ ├── geo-lines.html
│ ├── geo-map.html
│ ├── geo-random-stream.html
│ ├── geoScatter.html
│ ├── getOption.html
│ ├── graph-grid.html
│ ├── graph-grid-life.html
│ ├── graph.html
│ ├── graphicOption.html
│ ├── graphicRemove.html
│ ├── graph-label-rotate.html
│ ├── graph-simple.html
│ ├── graph-symbol.html
│ ├── gridSimple.html
│ ├── heatmap.html
│ ├── heatmap-large.html
│ ├── heatmap-map.html
│ ├── homepage3.html
│ ├── homepage3.js
│ ├── hoverStyle.html
│ ├── ie11.html
│ ├── ie8.html
│ ├── label-position.html
│ ├── largeLine.html
│ ├── largeLine-tooltip.html
│ ├── largeScatterWithEmpty.html
│ ├── lazyUpdate.html
│ ├── legend.html
│ ├── lib
│ │ ├── caseFrame.css
│ │ ├── caseFrame.js
│ │ ├── config.js
│ │ ├── countup.js
│ │ ├── dat.gui.min.js
│ │ ├── draggable.js
│ │ ├── esl.js
│ │ ├── facePrint.js
│ │ ├── frameInsight.js
│ │ ├── jquery.min.js
│ │ ├── perlin.js
│ │ ├── rearrange.js
│ │ ├── requireES.js
│ │ ├── reset.css
│ │ ├── rollup.browser.js
│ │ └── testHelper.js
│ ├── line-animation.html
│ ├── line.html
│ ├── line-large.html
│ ├── lines-bus.html
│ ├── lines-flight.html
│ ├── linesGL-ny-appendData.html
│ ├── lines-grid.html
│ ├── lines-ny-appendData.html
│ ├── lines-ny.html
│ ├── lines-remove.html
│ ├── lines-stream-large.html
│ ├── lines-stream-not-large.html
│ ├── lines-symbol.html
│ ├── lines-track.html
│ ├── line-visual.html
│ ├── loading.html
│ ├── logScale.html
│ ├── map-contour.html
│ ├── map-default.html
│ ├── map-grid.html
│ ├── map.html
│ ├── map-labels.html
│ ├── map-locate.html
│ ├── map-nested.html
│ ├── map-parallel.html
│ ├── map-province.html
│ ├── mapWorld.html
│ ├── markArea.html
│ ├── markLine.html
│ ├── markLine-subPixel.html
│ ├── markPoint.html
│ ├── masterPainterColorChoice.html
│ ├── media-dataZoom.html
│ ├── media-finance.html
│ ├── media-pie.html
│ ├── min-max-function.html
│ ├── mix.html
│ ├── mobileBench.html
│ ├── multipleGrid.html
│ ├── node
│ │ └── scatter-gps.js
│ ├── parallel-aqi.html
│ ├── parallel-lineStyle.html
│ ├── parallel-nutrients.html
│ ├── pictorial-repeat.html
│ ├── pictorial-single.html
│ ├── pictorial-svg.html
│ ├── pie2.html
│ ├── pie3.html
│ ├── pie-action.html
│ ├── pie-calculable.html
│ ├── pie-clipPath.html
│ ├── pie-digits.html
│ ├── pieDynamic.html
│ ├── pie.html
│ ├── pie-label.html
│ ├── polarLine2.html
│ ├── polarLine.html
│ ├── polarScatter.html
│ ├── punchCard.html
│ ├── radar2.html
│ ├── radar3.html
│ ├── radar4.html
│ ├── radar.html
│ ├── README.md
│ ├── richText-fontsize.html
│ ├── richText.html
│ ├── roseExtreme.html
│ ├── roseType.html
│ ├── sankey-depth.html
│ ├── sankey-horizontal.html
│ ├── sankey.html
│ ├── sankey-jump.html
│ ├── sankey-nodeAlign-left.html
│ ├── sankey-nodeAlign-right.html
│ ├── sankey-ringed.html
│ ├── sankey-vertical-energy.html
│ ├── sankey-vertical.html
│ ├── scale-integer.html
│ ├── scatter-gps.html
│ ├── scatter.html
│ ├── scatter-markline.html
│ ├── scatterMatrix.html
│ ├── scatter-random-stream-fix-axis.html
│ ├── scatter-random-stream.html
│ ├── scatter-single-axis.html
│ ├── scatter-stream-large.html
│ ├── scatter-stream-not-large.html
│ ├── scatter-stream-visual.html
│ ├── scatter-weibo.html
│ ├── selectedMode.html
│ ├── showTip.html
│ ├── singleAxisScales.html
│ ├── smooth.html
│ ├── stream-filter.html
│ ├── sunburst-book.html
│ ├── sunburst-canvas.html
│ ├── sunburst-drink.html
│ ├── sunburst-highlight.html
│ ├── sunburst.html
│ ├── sunburst-simple.html
│ ├── sunburst-visualMap.html
│ ├── svg-gradient-opacity.html
│ ├── svg-test.html
│ ├── symbol.html
│ ├── theme.html
│ ├── themeRiver2.html
│ ├── themeRiver.html
│ ├── timeline-dynamic-series.html
│ ├── timeline-finance.html
│ ├── timeline-layout.html
│ ├── timeScale2.html
│ ├── timeScale.html
│ ├── timeZone.html
│ ├── tmp-base.html
│ ├── tooltip-action.html
│ ├── tooltip-axisPointer.html
│ ├── tooltip-cascade.html
│ ├── tooltip-event.html
│ ├── tooltip.html
│ ├── tooltip-link.html
│ ├── tooltip-rich.html
│ ├── tooltip-setOption.html
│ ├── tooltipTestHelper.js
│ ├── tooltip-touch.html
│ ├── touch-candlestick.html
│ ├── touch-slide.html
│ ├── touch-test.html
│ ├── tree-addNode.html
│ ├── tree-basic.html
│ ├── tree-image.html
│ ├── tree-legend.html
│ ├── treemap-disk2.html
│ ├── treemap-disk.html
│ ├── treemap-obama.html
│ ├── treemap-option2.html
│ ├── treemap-option.html
│ ├── treemap-simple.html
│ ├── treemap-visual.html
│ ├── tree-orient-right-left.html
│ ├── tree-orient-top-bottom.html
│ ├── tree-radial.html
│ ├── tree-recurrentRemoveNode.html
│ ├── tree-removeNode.html
│ ├── tree-roam.html
│ ├── tree-vertical.html
│ ├── ut
│ │ ├── 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-large.html
│ ├── visualMap-layout.html
│ ├── visualMap-opacity.html
│ ├── visualMap-performance1.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
122 directories, 1016 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论