在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Unity数据可视化图表插件源码

Unity数据可视化图表插件源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.20M
  • 下载次数:0
  • 浏览次数:5
  • 发布时间:2024-04-28
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】

XCharts是一款基于UGUI的功能强大、简单易用的数据可视化图表插件,旨在为Unity开发者提供丰富多样的图表展示功能。它支持折线图、柱状图、饼图、雷达图、散点图等十多种内置图表类型,同时还提供了3D图表、扩展图表等多种功能扩展,满足开发者在数据可视化方面的各种需求。

XCharts具有纯代码绘制的特性,无需额外的贴图和Shader资源,使得图表绘制更为高效。开发者可以通过可视化配置参数,实时预览效果,并支持在运行时动态修改配置和数据,极大地提高了开发效率。此外,XCharts还支持高自由定制,开发者可以从主题和配置参数上任意调整图表样式,甚至通过代码自定义绘制和实现图表。

除了支持多种内置和扩展图表类型外,XCharts还提供了丰富的组件,如表格、统计数值等,以及多种坐标系、标题、图例、提示框等常用组件,帮助开发者构建更加完善的图表展示页面。同时,XCharts支持大数据量绘制和自定义主题定制,以及动画和交互功能,为用户提供更加丰富和灵活的图表展示体验。


【实例截图】

from clipboard


from clipboard

【核心代码】
文件清单
└── XCharts-e2120b3da667d6f966a017a72df92d63ccf42b96
    ├── Documentation~
    │   ├── en
    │   │   ├── api.md
    │   │   ├── changelog.md
    │   │   ├── configuration.md
    │   │   ├── faq.md
    │   │   ├── img
    │   │   │   ├── readme_buildinchart.png
    │   │   │   ├── readme_extendchart.png
    │   │   │   ├── readme_xcharts3.png
    │   │   │   ├── support_alipay.png
    │   │   │   ├── support_wechat.png
    │   │   │   ├── tutorial01_addcomponent.png
    │   │   │   ├── tutorial01_addseriecomponent.png
    │   │   │   ├── tutorial01_addseriedatacomponent.png
    │   │   │   ├── tutorial01_addserie.png
    │   │   │   ├── tutorial01_linechart1.png
    │   │   │   ├── tutorial01_linechart2.png
    │   │   │   ├── tutorial01_linechart3.png
    │   │   │   ├── tutorial01_linechart4.png
    │   │   │   ├── tutorial01_linechart_simple.png
    │   │   │   ├── tutorial01_textmeshpro_font.png
    │   │   │   ├── tutorial01_textmeshpro.png
    │   │   │   └── xcharts.png
    │   │   └── tutorial01.md
    │   ├── fragments
    │   ├── variable.json
    │   └── zh
    │       ├── api.md
    │       ├── changelog.md
    │       ├── configuration.md
    │       ├── faq.md
    │       ├── img
    │       │   ├── readme_buildinchart.png
    │       │   ├── readme_extendchart.png
    │       │   ├── readme_xcharts3.png
    │       │   ├── support_alipay.png
    │       │   ├── support_wechat.png
    │       │   ├── tutorial01_addcomponent.png
    │       │   ├── tutorial01_addseriecomponent.png
    │       │   ├── tutorial01_addseriedatacomponent.png
    │       │   ├── tutorial01_addserie.png
    │       │   ├── tutorial01_linechart1.png
    │       │   ├── tutorial01_linechart2.png
    │       │   ├── tutorial01_linechart3.png
    │       │   ├── tutorial01_linechart4.png
    │       │   ├── tutorial01_linechart_simple.png
    │       │   ├── tutorial01_textmeshpro_font.png
    │       │   ├── tutorial01_textmeshpro.png
    │       │   └── xcharts.png
    │       ├── support.md
    │       └── tutorial01.md
    ├── Editor
    │   ├── Attributes
    │   │   ├── ComponentEditorAttribute.cs
    │   │   ├── ComponentEditorAttribute.cs.meta
    │   │   ├── SerieEditorAttribute.cs
    │   │   └── SerieEditorAttribute.cs.meta
    │   ├── Attributes.meta
    │   ├── Charts
    │   │   ├── BaseChartEditor.cs
    │   │   └── BaseChartEditor.cs.meta
    │   ├── Charts.meta
    │   ├── ChildComponents
    │   │   ├── AnimationDrawer.cs
    │   │   ├── AnimationDrawer.cs.meta
    │   │   ├── AreaStyleDrawer.cs
    │   │   ├── AreaStyleDrawer.cs.meta
    │   │   ├── BackgroundDrawer.cs
    │   │   ├── BackgroundDrawer.cs.meta
    │   │   ├── BasePropertyDrawer.cs
    │   │   ├── BasePropertyDrawer.cs.meta
    │   │   ├── BorderStyleDrawer.cs
    │   │   ├── BorderStyleDrawer.cs.meta
    │   │   ├── CommentItemDrawer.cs
    │   │   ├── CommentItemDrawer.cs.meta
    │   │   ├── CommentMarkStyleDrawer.cs
    │   │   ├── CommentMarkStyleDrawer.cs.meta
    │   │   ├── ComponentThemeDrawer.cs
    │   │   ├── ComponentThemeDrawer.cs.meta
    │   │   ├── DebugInfoDrawer.cs
    │   │   ├── DebugInfoDrawer.cs.meta
    │   │   ├── IconStyleDrawer.cs
    │   │   ├── IconStyleDrawer.cs.meta
    │   │   ├── ImageStyleDrawer.cs
    │   │   ├── ImageStyleDrawer.cs.meta
    │   │   ├── ItemStyleDrawer.cs
    │   │   ├── ItemStyleDrawer.cs.meta
    │   │   ├── LabelLineDrawer.cs
    │   │   ├── LabelLineDrawer.cs.meta
    │   │   ├── LabelStyleDrawer.cs
    │   │   ├── LabelStyleDrawer.cs.meta
    │   │   ├── LevelStyleDrawer.cs
    │   │   ├── LevelStyleDrawer.cs.meta
    │   │   ├── LineArrowDrawer.cs
    │   │   ├── LineArrowDrawer.cs.meta
    │   │   ├── LineDrawer.cs
    │   │   ├── LineDrawer.cs.meta
    │   │   ├── LineStyleDrawer.cs
    │   │   ├── LineStyleDrawer.cs.meta
    │   │   ├── LocationDrawer.cs
    │   │   ├── LocationDrawer.cs.meta
    │   │   ├── MarqueeStyleDrawer.cs
    │   │   ├── MarqueeStyleDrawer.cs.meta
    │   │   ├── MLValueDrawer.cs
    │   │   ├── MLValueDrawer.cs.meta
    │   │   ├── SerieSymbolDrawer.cs
    │   │   ├── SerieSymbolDrawer.cs.meta
    │   │   ├── SettingsDrawer.cs
    │   │   ├── SettingsDrawer.cs.meta
    │   │   ├── StateStyleDrawer.cs
    │   │   ├── StateStyleDrawer.cs.meta
    │   │   ├── SymbolStyleDrawer.cs
    │   │   ├── SymbolStyleDrawer.cs.meta
    │   │   ├── TextLimitDrawer.cs
    │   │   ├── TextLimitDrawer.cs.meta
    │   │   ├── TextPaddingDrawer.cs
    │   │   ├── TextPaddingDrawer.cs.meta
    │   │   ├── TextStyleDrawer.cs
    │   │   ├── TextStyleDrawer.cs.meta
    │   │   ├── ThemeDrawer.cs
    │   │   ├── ThemeDrawer.cs.meta
    │   │   ├── TitleStyleDrawer.cs
    │   │   └── TitleStyleDrawer.cs.meta
    │   ├── ChildComponents.meta
    │   ├── MainComponents
    │   │   ├── AxisEditor.cs
    │   │   ├── AxisEditor.cs.meta
    │   │   ├── BackgroundEditor.cs
    │   │   ├── BackgroundEditor.cs.meta
    │   │   ├── BaseGraphEditor.cs
    │   │   ├── BaseGraphEditor.cs.meta
    │   │   ├── CommentEditor.cs
    │   │   ├── CommentEditor.cs.meta
    │   │   ├── DataZoomEditor.cs
    │   │   ├── DataZoomEditor.cs.meta
    │   │   ├── GridCoordEditor.cs
    │   │   ├── GridCoordEditor.cs.meta
    │   │   ├── GridLayoutEditor.cs
    │   │   ├── GridLayoutEditor.cs.meta
    │   │   ├── LegendEditor.cs
    │   │   ├── LegendEditor.cs.meta
    │   │   ├── MainComponentBaseEditor.cs
    │   │   ├── MainComponentBaseEditor.cs.meta
    │   │   ├── MainComponentEditor.cs
    │   │   ├── MainComponentEditor.cs.meta
    │   │   ├── MainComponentListEditor.cs
    │   │   ├── MainComponentListEditor.cs.meta
    │   │   ├── MarkAreaEditor.cs
    │   │   ├── MarkAreaEditor.cs.meta
    │   │   ├── MarkLineEditor.cs
    │   │   ├── MarkLineEditor.cs.meta
    │   │   ├── ParallelCoordEditor.cs
    │   │   ├── ParallelCoordEditor.cs.meta
    │   │   ├── PolarCoordEditor.cs
    │   │   ├── PolarCoordEditor.cs.meta
    │   │   ├── RadarCoordEditor.cs
    │   │   ├── RadarCoordEditor.cs.meta
    │   │   ├── ThemeEditor.cs
    │   │   ├── ThemeEditor.cs.meta
    │   │   ├── TitleEditor.cs
    │   │   ├── TitleEditor.cs.meta
    │   │   ├── TooltipEditor.cs
    │   │   ├── TooltipEditor.cs.meta
    │   │   ├── UIComponentEditor.cs
    │   │   ├── UIComponentEditor.cs.meta
    │   │   ├── UIComponentThemeDrawer.cs
    │   │   ├── UIComponentThemeDrawer.cs.meta
    │   │   ├── VisualMapEditor.cs
    │   │   └── VisualMapEditor.cs.meta
    │   ├── MainComponents.meta
    │   ├── Series
    │   │   ├── BarEditor.cs
    │   │   ├── BarEditor.cs.meta
    │   │   ├── CandlestickEditor.cs
    │   │   ├── CandlestickEditor.cs.meta
    │   │   ├── EffectScatterEditor.cs
    │   │   ├── EffectScatterEditor.cs.meta
    │   │   ├── HeatmapEditor.cs
    │   │   ├── HeatmapEditor.cs.meta
    │   │   ├── LineEditor.cs
    │   │   ├── LineEditor.cs.meta
    │   │   ├── ParallelEditor.cs
    │   │   ├── ParallelEditor.cs.meta
    │   │   ├── PieEditor.cs
    │   │   ├── PieEditor.cs.meta
    │   │   ├── RadarEditor.cs
    │   │   ├── RadarEditor.cs.meta
    │   │   ├── RingEditor.cs
    │   │   ├── RingEditor.cs.meta
    │   │   ├── ScatterEditor.cs
    │   │   ├── ScatterEditor.cs.meta
    │   │   ├── SerieBaseEditor.cs
    │   │   ├── SerieBaseEditor.cs.meta
    │   │   ├── SerieDataLinkDrawer.cs
    │   │   ├── SerieDataLinkDrawer.cs.meta
    │   │   ├── SerieEditor.cs
    │   │   ├── SerieEditor.cs.meta
    │   │   ├── SerieListEditor.cs
    │   │   ├── SerieListEditor.cs.meta
    │   │   ├── SimplifiedBarEditor.cs
    │   │   ├── SimplifiedBarEditor.cs.meta
    │   │   ├── SimplifiedCandlestickEditor.cs
    │   │   ├── SimplifiedCandlestickEditor.cs.meta
    │   │   ├── SimplifiedLineEditor.cs
    │   │   └── SimplifiedLineEditor.cs.meta
    │   ├── Series.meta
    │   ├── Utilities
    │   │   ├── ChartEditorHelper.cs
    │   │   ├── ChartEditorHelper.cs.meta
    │   │   ├── EditorStyles.cs
    │   │   ├── EditorStyles.cs.meta
    │   │   ├── XChartsDaemon.cs
    │   │   └── XChartsDaemon.cs.meta
    │   ├── Utilities.meta
    │   ├── Windows
    │   │   ├── PraseExternalDataEditor.cs
    │   │   ├── PraseExternalDataEditor.cs.meta
    │   │   ├── XChartsEditor.BarChart.cs
    │   │   ├── XChartsEditor.BarChart.cs.meta
    │   │   ├── XChartsEditor.cs
    │   │   ├── XChartsEditor.cs.meta
    │   │   ├── XChartsEditor.LineChart.cs
    │   │   ├── XChartsEditor.LineChart.cs.meta
    │   │   ├── XChartsEditor.PieChart.cs
    │   │   ├── XChartsEditor.PieChart.cs.meta
    │   │   ├── XChartsEditor.PolarChart.cs
    │   │   ├── XChartsEditor.PolarChart.cs.meta
    │   │   ├── XCSettingsEditor.cs
    │   │   └── XCSettingsEditor.cs.meta
    │   ├── Windows.meta
    │   ├── XCharts.Editor.asmdef
    │   └── XCharts.Editor.asmdef.meta
    ├── Editor.meta
    ├── Examples
    │   ├── Example00_CheatSheet.cs
    │   ├── Example00_CheatSheet.cs.meta
    │   ├── Example01_RandomData.cs
    │   ├── Example01_RandomData.cs.meta
    │   ├── Example02_ChartEvent.cs
    │   ├── Example02_ChartEvent.cs.meta
    │   ├── Example03_ChartAnimation.cs
    │   ├── Example03_ChartAnimation.cs.meta
    │   ├── Example04_DataZoom.cs
    │   ├── Example04_DataZoom.cs.meta
    │   ├── Example05_DynamicChart.cs
    │   ├── Example05_DynamicChart.cs.meta
    │   ├── Example10_LineChart.cs
    │   ├── Example10_LineChart.cs.meta
    │   ├── Example11_AddSinCurve.cs
    │   ├── Example11_AddSinCurve.cs.meta
    │   ├── Example12_CustomDrawing.cs
    │   ├── Example12_CustomDrawing.cs.meta
    │   ├── Example13_LineSimple.cs
    │   ├── Example13_LineSimple.cs.meta
    │   ├── Example20_BarChart.cs
    │   ├── Example20_BarChart.cs.meta
    │   ├── Example21_BarRace.cs
    │   ├── Example21_BarRace.cs.meta
    │   ├── Example30_PieChart.cs
    │   ├── Example30_PieChart.cs.meta
    │   ├── Example31_PieUpdateName.cs
    │   ├── Example31_PieUpdateName.cs.meta
    │   ├── Example40_Radar.cs
    │   ├── Example40_Radar.cs.meta
    │   ├── Example41_RadarUpdate.cs
    │   ├── Example41_RadarUpdate.cs.meta
    │   ├── Example50_Scatter.cs
    │   ├── Example50_Scatter.cs.meta
    │   ├── Example60_Heatmap.cs
    │   ├── Example60_Heatmap.cs.meta
    │   ├── Example80_Polar.cs
    │   ├── Example80_Polar.cs.meta
    │   ├── Example90_Candlestick.cs
    │   ├── Example90_Candlestick.cs.meta
    │   ├── Example_Test.cs
    │   ├── Example_Test.cs.meta
    │   ├── XCharts.Examples.asmdef
    │   └── XCharts.Examples.asmdef.meta
    ├── Examples.meta
    ├── LICENSE.md
    ├── LICENSE.md.meta
    ├── package.json
    ├── package.json.meta
    ├── Plugins
    │   ├── Download.jslib
    │   └── Download.jslib.meta
    ├── Plugins.meta
    ├── README-en.md
    ├── README-en.md.meta
    ├── README.md
    ├── README.md.meta
    ├── Resources
    │   ├── XCLang-EN.asset
    │   ├── XCLang-EN.asset.meta
    │   ├── XCLang-ZH.asset
    │   ├── XCLang-ZH.asset.meta
    │   ├── XCSettings.asset
    │   ├── XCSettings.asset.meta
    │   ├── XCTheme-Dark.asset
    │   ├── XCTheme-Dark.asset.meta
    │   ├── XCTheme-Default.asset
    │   └── XCTheme-Default.asset.meta
    ├── Resources.meta
    ├── Runtime
    │   ├── Chart
    │   │   ├── BarChart.cs
    │   │   ├── BarChart.cs.meta
    │   │   ├── CandlestickChart.cs
    │   │   ├── CandlestickChart.cs.meta
    │   │   ├── HeatmapChart.cs
    │   │   ├── HeatmapChart.cs.meta
    │   │   ├── LineChart.cs
    │   │   ├── LineChart.cs.meta
    │   │   ├── ParallelChart.cs
    │   │   ├── ParallelChart.cs.meta
    │   │   ├── PieChart.cs
    │   │   ├── PieChart.cs.meta
    │   │   ├── PolarChart.cs
    │   │   ├── PolarChart.cs.meta
    │   │   ├── RadarChart.cs
    │   │   ├── RadarChart.cs.meta
    │   │   ├── RingChart.cs
    │   │   ├── RingChart.cs.meta
    │   │   ├── ScatterChart.cs
    │   │   ├── ScatterChart.cs.meta
    │   │   ├── SimplifiedBarChart.cs
    │   │   ├── SimplifiedBarChart.cs.meta
    │   │   ├── SimplifiedCandlestickChart.cs
    │   │   ├── SimplifiedCandlestickChart.cs.meta
    │   │   ├── SimplifiedLineChart.cs
    │   │   └── SimplifiedLineChart.cs.meta
    │   ├── Chart.meta
    │   ├── Component
    │   │   ├── Animation
    │   │   │   ├── AnimationInfoContext.cs
    │   │   │   ├── AnimationInfoContext.cs.meta
    │   │   │   ├── AnimationInfo.cs
    │   │   │   ├── AnimationInfo.cs.meta
    │   │   │   ├── AnimationStyleContext.cs
    │   │   │   ├── AnimationStyleContext.cs.meta
    │   │   │   ├── AnimationStyle.cs
    │   │   │   ├── AnimationStyle.cs.meta
    │   │   │   ├── AnimationStyleHelper.cs
    │   │   │   └── AnimationStyleHelper.cs.meta
    │   │   ├── Animation.meta
    │   │   ├── Axis
    │   │   │   ├── AngleAxis
    │   │   │   │   ├── AngleAxis.cs
    │   │   │   │   ├── AngleAxis.cs.meta
    │   │   │   │   ├── AngleAxisHandler.cs
    │   │   │   │   └── AngleAxisHandler.cs.meta
    │   │   │   ├── AngleAxis.meta
    │   │   │   ├── AxisAnimation.cs
    │   │   │   ├── AxisAnimation.cs.meta
    │   │   │   ├── AxisContext.cs
    │   │   │   ├── AxisContext.cs.meta
    │   │   │   ├── Axis.cs
    │   │   │   ├── Axis.cs.meta
    │   │   │   ├── AxisHandler.cs
    │   │   │   ├── AxisHandler.cs.meta
    │   │   │   ├── AxisHelper.cs
    │   │   │   ├── AxisHelper.cs.meta
    │   │   │   ├── AxisLabel.cs
    │   │   │   ├── AxisLabel.cs.meta
    │   │   │   ├── AxisLine.cs
    │   │   │   ├── AxisLine.cs.meta
    │   │   │   ├── AxisMinorSplitLine.cs
    │   │   │   ├── AxisMinorSplitLine.cs.meta
    │   │   │   ├── AxisMinorTick.cs
    │   │   │   ├── AxisMinorTick.cs.meta
    │   │   │   ├── AxisName.cs
    │   │   │   ├── AxisName.cs.meta
    │   │   │   ├── AxisSplitArea.cs
    │   │   │   ├── AxisSplitArea.cs.meta
    │   │   │   ├── AxisSplitLine.cs
    │   │   │   ├── AxisSplitLine.cs.meta
    │   │   │   ├── AxisTick.cs
    │   │   │   ├── AxisTick.cs.meta
    │   │   │   ├── ParallelAxis
    │   │   │   │   ├── ParallelAxis.cs
    │   │   │   │   ├── ParallelAxis.cs.meta
    │   │   │   │   ├── ParallelAxisHander.cs
    │   │   │   │   └── ParallelAxisHander.cs.meta
    │   │   │   ├── ParallelAxis.meta
    │   │   │   ├── RadiusAxis
    │   │   │   │   ├── RadiusAxis.cs
    │   │   │   │   ├── RadiusAxis.cs.meta
    │   │   │   │   ├── RadiusAxisHandler.cs
    │   │   │   │   └── RadiusAxisHandler.cs.meta
    │   │   │   ├── RadiusAxis.meta
    │   │   │   ├── SingleAxis
    │   │   │   │   ├── SingleAxis.cs
    │   │   │   │   ├── SingleAxis.cs.meta
    │   │   │   │   ├── SingleAxisHandler.cs
    │   │   │   │   └── SingleAxisHandler.cs.meta
    │   │   │   ├── SingleAxis.meta
    │   │   │   ├── XAxis
    │   │   │   │   ├── XAxis.cs
    │   │   │   │   ├── XAxis.cs.meta
    │   │   │   │   ├── XAxisHander.cs
    │   │   │   │   └── XAxisHander.cs.meta
    │   │   │   ├── XAxis.meta
    │   │   │   ├── YAxis
    │   │   │   │   ├── YAxis.cs
    │   │   │   │   ├── YAxis.cs.meta
    │   │   │   │   ├── YAxisHander.cs
    │   │   │   │   └── YAxisHander.cs.meta
    │   │   │   └── YAxis.meta
    │   │   ├── Axis.meta
    │   │   ├── Background
    │   │   │   ├── Background.cs
    │   │   │   ├── Background.cs.meta
    │   │   │   ├── BackgroundHandler.cs
    │   │   │   └── BackgroundHandler.cs.meta
    │   │   ├── Background.meta
    │   │   ├── Child
    │   │   │   ├── AreaStyle.cs
    │   │   │   ├── AreaStyle.cs.meta
    │   │   │   ├── ArrowStyle.cs
    │   │   │   ├── ArrowStyle.cs.meta
    │   │   │   ├── BaseLine.cs
    │   │   │   ├── BaseLine.cs.meta
    │   │   │   ├── BorderStyle.cs
    │   │   │   ├── BorderStyle.cs.meta
    │   │   │   ├── IconStyle.cs
    │   │   │   ├── IconStyle.cs.meta
    │   │   │   ├── ImageStyle.cs
    │   │   │   ├── ImageStyle.cs.meta
    │   │   │   ├── ItemStyle.cs
    │   │   │   ├── ItemStyle.cs.meta
    │   │   │   ├── LevelStyle.cs
    │   │   │   ├── LevelStyle.cs.meta
    │   │   │   ├── LineArrow.cs
    │   │   │   ├── LineArrow.cs.meta
    │   │   │   ├── LineStyle.cs
    │   │   │   ├── LineStyle.cs.meta
    │   │   │   ├── Location.cs
    │   │   │   ├── Location.cs.meta
    │   │   │   ├── MarqueeStyle.cs
    │   │   │   ├── MarqueeStyle.cs.meta
    │   │   │   ├── MLValue.cs
    │   │   │   ├── MLValue.cs.meta
    │   │   │   ├── Padding.cs
    │   │   │   ├── Padding.cs.meta
    │   │   │   ├── SerieSymbl.cs
    │   │   │   ├── SerieSymbl.cs.meta
    │   │   │   ├── StageColor.cs
    │   │   │   ├── StageColor.cs.meta
    │   │   │   ├── SymbolStyle.cs
    │   │   │   ├── SymbolStyle.cs.meta
    │   │   │   ├── TextLimit.cs
    │   │   │   ├── TextLimit.cs.meta
    │   │   │   ├── TextPadding.cs
    │   │   │   ├── TextPadding.cs.meta
    │   │   │   ├── TextStyle.cs
    │   │   │   └── TextStyle.cs.meta
    │   │   ├── Child.meta
    │   │   ├── Comment
    │   │   │   ├── Comment.cs
    │   │   │   ├── Comment.cs.meta
    │   │   │   ├── CommentHander.cs
    │   │   │   ├── CommentHander.cs.meta
    │   │   │   ├── CommentItem.cs
    │   │   │   ├── CommentItem.cs.meta
    │   │   │   ├── CommentMarkStyle.cs
    │   │   │   └── CommentMarkStyle.cs.meta
    │   │   ├── Comment.meta
    │   │   ├── DataZoom
    │   │   │   ├── DataZoomContext.cs
    │   │   │   ├── DataZoomContext.cs.meta
    │   │   │   ├── DataZoom.cs
    │   │   │   ├── DataZoom.cs.meta
    │   │   │   ├── DataZoomHandler.cs
    │   │   │   ├── DataZoomHandler.cs.meta
    │   │   │   ├── DataZoomHelper.cs
    │   │   │   └── DataZoomHelper.cs.meta
    │   │   ├── DataZoom.meta
    │   │   ├── Debug
    │   │   │   ├── DebugInfo.cs
    │   │   │   └── DebugInfo.cs.meta
    │   │   ├── Debug.meta
    │   │   ├── Interaction
    │   │   │   ├── InteractData.cs
    │   │   │   └── InteractData.cs.meta
    │   │   ├── Interaction.meta
    │   │   ├── Label
    │   │   │   ├── EndLabelStyle.cs
    │   │   │   ├── EndLabelStyle.cs.meta
    │   │   │   ├── LabelLine.cs
    │   │   │   ├── LabelLine.cs.meta
    │   │   │   ├── LabelStyle.cs
    │   │   │   ├── LabelStyle.cs.meta
    │   │   │   ├── SerieLabelHelper.cs
    │   │   │   └── SerieLabelHelper.cs.meta
    │   │   ├── Label.meta
    │   │   ├── Legend
    │   │   │   ├── LegendContext.cs
    │   │   │   ├── LegendContext.cs.meta
    │   │   │   ├── Legend.cs
    │   │   │   ├── Legend.cs.meta
    │   │   │   ├── LegendHandler.cs
    │   │   │   ├── LegendHandler.cs.meta
    │   │   │   ├── LegendHelper.cs
    │   │   │   └── LegendHelper.cs.meta
    │   │   ├── Legend.meta
    │   │   ├── Mark
    │   │   │   ├── MarkArea.cs
    │   │   │   ├── MarkArea.cs.meta
    │   │   │   ├── MarkAreaHandler.cs
    │   │   │   ├── MarkAreaHandler.cs.meta
    │   │   │   ├── MarkLine.cs
    │   │   │   ├── MarkLine.cs.meta
    │   │   │   ├── MarkLineHandler.cs
    │   │   │   ├── MarkLineHandler.cs.meta
    │   │   │   ├── MarkLineHelper.cs
    │   │   │   └── MarkLineHelper.cs.meta
    │   │   ├── Mark.meta
    │   │   ├── Radar
    │   │   │   ├── RadarCoordContext.cs
    │   │   │   ├── RadarCoordContext.cs.meta
    │   │   │   ├── RadarCoord.cs
    │   │   │   ├── RadarCoord.cs.meta
    │   │   │   ├── RadarCoordHandler.cs
    │   │   │   └── RadarCoordHandler.cs.meta
    │   │   ├── Radar.meta
    │   │   ├── Settings
    │   │   │   ├── Settings.cs
    │   │   │   └── Settings.cs.meta
    │   │   ├── Settings.meta
    │   │   ├── State
    │   │   │   ├── BlurStyle.cs
    │   │   │   ├── BlurStyle.cs.meta
    │   │   │   ├── EmphasisStyle.cs
    │   │   │   ├── EmphasisStyle.cs.meta
    │   │   │   ├── SelectStyle.cs
    │   │   │   ├── SelectStyle.cs.meta
    │   │   │   ├── StateStyle.cs
    │   │   │   └── StateStyle.cs.meta
    │   │   ├── State.meta
    │   │   ├── Title
    │   │   │   ├── Title.cs
    │   │   │   ├── Title.cs.meta
    │   │   │   ├── TitleHandler.cs
    │   │   │   ├── TitleHandler.cs.meta
    │   │   │   ├── TitleStyle.cs
    │   │   │   └── TitleStyle.cs.meta
    │   │   ├── Title.meta
    │   │   ├── Tooltip
    │   │   │   ├── TooltipContext.cs
    │   │   │   ├── TooltipContext.cs.meta
    │   │   │   ├── Tooltip.cs
    │   │   │   ├── Tooltip.cs.meta
    │   │   │   ├── TooltipHandler.cs
    │   │   │   ├── TooltipHandler.cs.meta
    │   │   │   ├── TooltipHelper.cs
    │   │   │   ├── TooltipHelper.cs.meta
    │   │   │   ├── TooltipView.cs
    │   │   │   └── TooltipView.cs.meta
    │   │   ├── Tooltip.meta
    │   │   ├── VisualMap
    │   │   │   ├── VisualMapContext.cs
    │   │   │   ├── VisualMapContext.cs.meta
    │   │   │   ├── VisualMap.cs
    │   │   │   ├── VisualMap.cs.meta
    │   │   │   ├── VisualMapHandler.cs
    │   │   │   ├── VisualMapHandler.cs.meta
    │   │   │   ├── VisualMapHelper.cs
    │   │   │   └── VisualMapHelper.cs.meta
    │   │   └── VisualMap.meta
    │   ├── Component.meta
    │   ├── Coord
    │   │   ├── Calendar
    │   │   │   ├── CalendarCoord.cs
    │   │   │   ├── CalendarCoord.cs.meta
    │   │   │   ├── CalendarCoordHandler.cs
    │   │   │   └── CalendarCoordHandler.cs.meta
    │   │   ├── Calendar.meta
    │   │   ├── Grid
    │   │   │   ├── GridCoordContext.cs
    │   │   │   ├── GridCoordContext.cs.meta
    │   │   │   ├── GridCoord.cs
    │   │   │   ├── GridCoord.cs.meta
    │   │   │   ├── GridCoordHandler.cs
    │   │   │   ├── GridCoordHandler.cs.meta
    │   │   │   ├── GridLayoutContext.cs
    │   │   │   ├── GridLayoutContext.cs.meta
    │   │   │   ├── GridLayoutHandler.cs
    │   │   │   ├── GridLayoutHandler.cs.meta
    │   │   │   ├── XGridLayout.cs
    │   │   │   └── XGridLayout.cs.meta
    │   │   ├── Grid.meta
    │   │   ├── Parallel
    │   │   │   ├── ParallelCoordContext.cs
    │   │   │   ├── ParallelCoordContext.cs.meta
    │   │   │   ├── ParallelCoord.cs
    │   │   │   ├── ParallelCoord.cs.meta
    │   │   │   ├── ParallelCoordHandler.cs
    │   │   │   └── ParallelCoordHandler.cs.meta
    │   │   ├── Parallel.meta
    │   │   ├── Polar
    │   │   │   ├── PolarCoordContext.cs
    │   │   │   ├── PolarCoordContext.cs.meta
    │   │   │   ├── PolarCoord.cs
    │   │   │   ├── PolarCoord.cs.meta
    │   │   │   ├── PolarCoordHandler.cs
    │   │   │   ├── PolarCoordHandler.cs.meta
    │   │   │   ├── PolarHelper.cs
    │   │   │   └── PolarHelper.cs.meta
    │   │   ├── Polar.meta
    │   │   ├── SingleAxis
    │   │   │   ├── SingleAxisCoord.cs
    │   │   │   └── SingleAxisCoord.cs.meta
    │   │   └── SingleAxis.meta
    │   ├── Coord.meta
    │   ├── Helper
    │   │   ├── CheckHelper.cs
    │   │   ├── CheckHelper.cs.meta
    │   │   ├── FormatterHelper.cs
    │   │   └── FormatterHelper.cs.meta
    │   ├── Helper.meta
    │   ├── I18n
    │   │   ├── Lang.cs
    │   │   └── Lang.cs.meta
    │   ├── I18n.meta
    │   ├── Internal
    │   │   ├── Attributes
    │   │   │   ├── ComponentHandlerAttribute.cs
    │   │   │   ├── ComponentHandlerAttribute.cs.meta
    │   │   │   ├── CoordOptionsAttribute.cs
    │   │   │   ├── CoordOptionsAttribute.cs.meta
    │   │   │   ├── DefaultAnimationAttribute.cs
    │   │   │   ├── DefaultAnimationAttribute.cs.meta
    │   │   │   ├── DefaultTooltipAttribute.cs
    │   │   │   ├── DefaultTooltipAttribute.cs.meta
    │   │   │   ├── IgnoreDocAttribute.cs
    │   │   │   ├── IgnoreDocAttribute.cs.meta
    │   │   │   ├── ListForAttribute.cs
    │   │   │   ├── ListForAttribute.cs.meta
    │   │   │   ├── ListForComponentAttribute.cs
    │   │   │   ├── ListForComponentAttribute.cs.meta
    │   │   │   ├── ListForSerieAttribute.cs
    │   │   │   ├── ListForSerieAttribute.cs.meta
    │   │   │   ├── RequireChartComponentAttribute.cs
    │   │   │   ├── RequireChartComponentAttribute.cs.meta
    │   │   │   ├── SerieComponentAttribute.cs
    │   │   │   ├── SerieComponentAttribute.cs.meta
    │   │   │   ├── SerieConvertAttribute.cs
    │   │   │   ├── SerieConvertAttribute.cs.meta
    │   │   │   ├── SerieDataComponentAttribute.cs
    │   │   │   ├── SerieDataComponentAttribute.cs.meta
    │   │   │   ├── SerieDataExtraFieldAttribute.cs
    │   │   │   ├── SerieDataExtraFieldAttribute.cs.meta
    │   │   │   ├── SerieHandlerAttribute.cs
    │   │   │   ├── SerieHandlerAttribute.cs.meta
    │   │   │   ├── SinceAttribute.cs
    │   │   │   └── SinceAttribute.cs.meta
    │   │   ├── Attributes.meta
    │   │   ├── BaseChart.API.cs
    │   │   ├── BaseChart.API.cs.meta
    │   │   ├── BaseChart.Component.cs
    │   │   ├── BaseChart.Component.cs.meta
    │   │   ├── BaseChart.cs
    │   │   ├── BaseChart.cs.meta
    │   │   ├── BaseChart.Custom.cs
    │   │   ├── BaseChart.Custom.cs.meta
    │   │   ├── BaseChart.Draw.cs
    │   │   ├── BaseChart.Draw.cs.meta
    │   │   ├── BaseChart.Serie.cs
    │   │   ├── BaseChart.Serie.cs.meta
    │   │   ├── BaseGraph.API.cs
    │   │   ├── BaseGraph.API.cs.meta
    │   │   ├── BaseGraph.cs
    │   │   ├── BaseGraph.cs.meta
    │   │   ├── Basic
    │   │   │   ├── BaseSerie.cs
    │   │   │   ├── BaseSerie.cs.meta
    │   │   │   ├── ChildComponent.cs
    │   │   │   ├── ChildComponent.cs.meta
    │   │   │   ├── CoordSystem.cs
    │   │   │   ├── CoordSystem.cs.meta
    │   │   │   ├── MainComponentContext.cs
    │   │   │   ├── MainComponentContext.cs.meta
    │   │   │   ├── MainComponent.cs
    │   │   │   └── MainComponent.cs.meta
    │   │   ├── Basic.meta
    │   │   ├── Data
    │   │   │   ├── GraphData.cs
    │   │   │   └── GraphData.cs.meta
    │   │   ├── Data.meta
    │   │   ├── Misc
    │   │   │   ├── DelegateFunction.cs
    │   │   │   ├── DelegateFunction.cs.meta
    │   │   │   ├── Enums.cs
    │   │   │   ├── Enums.cs.meta
    │   │   │   ├── INeedSerieContainer.cs
    │   │   │   ├── INeedSerieContainer.cs.meta
    │   │   │   ├── IPropertyChanged.cs
    │   │   │   ├── IPropertyChanged.cs.meta
    │   │   │   ├── ISerieComponent.cs
    │   │   │   ├── ISerieComponent.cs.meta
    │   │   │   ├── ISerieContainer.cs
    │   │   │   ├── ISerieContainer.cs.meta
    │   │   │   ├── ISerieDataComponent.cs
    │   │   │   ├── ISerieDataComponent.cs.meta
    │   │   │   ├── ISimplifiedSerie.cs
    │   │   │   ├── ISimplifiedSerie.cs.meta
    │   │   │   ├── ITooltipView.cs
    │   │   │   ├── ITooltipView.cs.meta
    │   │   │   ├── IUpdateRuntimeData.cs
    │   │   │   ├── IUpdateRuntimeData.cs.meta
    │   │   │   ├── SerieEventData.cs
    │   │   │   └── SerieEventData.cs.meta
    │   │   ├── Misc.meta
    │   │   ├── Object
    │   │   │   ├── ChartLabel.cs
    │   │   │   ├── ChartLabel.cs.meta
    │   │   │   ├── ChartObject.cs
    │   │   │   ├── ChartObject.cs.meta
    │   │   │   ├── ChartText.cs
    │   │   │   ├── ChartText.cs.meta
    │   │   │   ├── LegendItem.cs
    │   │   │   └── LegendItem.cs.meta
    │   │   ├── Object.meta
    │   │   ├── Painter.cs
    │   │   ├── Painter.cs.meta
    │   │   ├── Pools
    │   │   │   ├── ListPool.cs
    │   │   │   ├── ListPool.cs.meta
    │   │   │   ├── ObjectPool.cs
    │   │   │   ├── ObjectPool.cs.meta
    │   │   │   ├── SerieDataPool.cs
    │   │   │   ├── SerieDataPool.cs.meta
    │   │   │   ├── SerieEventDataPool.cs
    │   │   │   ├── SerieEventDataPool.cs.meta
    │   │   │   ├── SerieLabelPool.cs
    │   │   │   └── SerieLabelPool.cs.meta
    │   │   ├── Pools.meta
    │   │   ├── UIComponent.cs
    │   │   ├── UIComponent.cs.meta
    │   │   ├── UIComponentTheme.cs
    │   │   ├── UIComponentTheme.cs.meta
    │   │   ├── Utilities
    │   │   │   ├── ChartCached.cs
    │   │   │   ├── ChartCached.cs.meta
    │   │   │   ├── ChartConst.cs
    │   │   │   ├── ChartConst.cs.meta
    │   │   │   ├── ChartDrawer.cs
    │   │   │   ├── ChartDrawer.cs.meta
    │   │   │   ├── ChartHelper.cs
    │   │   │   ├── ChartHelper.cs.meta
    │   │   │   ├── ComponentHelper.cs
    │   │   │   ├── ComponentHelper.cs.meta
    │   │   │   ├── DataHelper.cs
    │   │   │   ├── DataHelper.cs.meta
    │   │   │   ├── InputHelper.cs
    │   │   │   ├── InputHelper.cs.meta
    │   │   │   ├── LayoutHelper.cs
    │   │   │   ├── LayoutHelper.cs.meta
    │   │   │   ├── MathUtil.cs
    │   │   │   ├── MathUtil.cs.meta
    │   │   │   ├── UIHelper.cs
    │   │   │   └── UIHelper.cs.meta
    │   │   ├── Utilities.meta
    │   │   ├── XChartsMgr.cs
    │   │   ├── XChartsMgr.cs.meta
    │   │   ├── XCResourcesImporter.cs
    │   │   ├── XCResourcesImporter.cs.meta
    │   │   ├── XCSettings.cs
    │   │   ├── XCSettings.cs.meta
    │   │   ├── XCThemeMgr.cs
    │   │   └── XCThemeMgr.cs.meta
    │   ├── Internal.meta
    │   ├── Serie
    │   │   ├── Bar
    │   │   │   ├── Bar.cs
    │   │   │   ├── Bar.cs.meta
    │   │   │   ├── BarHandler.cs
    │   │   │   ├── BarHandler.cs.meta
    │   │   │   ├── BarHandler.PolarCoord.cs
    │   │   │   ├── BarHandler.PolarCoord.cs.meta
    │   │   │   ├── SimplifiedBar.cs
    │   │   │   ├── SimplifiedBar.cs.meta
    │   │   │   ├── SimplifiedBarHandler.cs
    │   │   │   └── SimplifiedBarHandler.cs.meta
    │   │   ├── Bar.meta
    │   │   ├── Candlestick
    │   │   │   ├── Candlestick.cs
    │   │   │   ├── Candlestick.cs.meta
    │   │   │   ├── CandlestickHandler.cs
    │   │   │   ├── CandlestickHandler.cs.meta
    │   │   │   ├── SimplifiedCandlestick.cs
    │   │   │   ├── SimplifiedCandlestick.cs.meta
    │   │   │   ├── SimplifiedCandlestickHandler.cs
    │   │   │   └── SimplifiedCandlestickHandler.cs.meta
    │   │   ├── Candlestick.meta
    │   │   ├── Heatmap
    │   │   │   ├── Heatmap.cs
    │   │   │   ├── Heatmap.cs.meta
    │   │   │   ├── HeatmapHandler.cs
    │   │   │   ├── HeatmapHandler.cs.meta
    │   │   │   ├── HeatmapHandler.PolarCoord.cs
    │   │   │   └── HeatmapHandler.PolarCoord.cs.meta
    │   │   ├── Heatmap.meta
    │   │   ├── Line
    │   │   │   ├── Line.cs
    │   │   │   ├── Line.cs.meta
    │   │   │   ├── LineHandler.cs
    │   │   │   ├── LineHandler.cs.meta
    │   │   │   ├── LineHandler.GridCoord.cs
    │   │   │   ├── LineHandler.GridCoord.cs.meta
    │   │   │   ├── LineHandler.PolarCoord.cs
    │   │   │   ├── LineHandler.PolarCoord.cs.meta
    │   │   │   ├── LineHelper.cs
    │   │   │   ├── LineHelper.cs.meta
    │   │   │   ├── SimplifiedLine.cs
    │   │   │   ├── SimplifiedLine.cs.meta
    │   │   │   ├── SimplifiedLineHandler.cs
    │   │   │   └── SimplifiedLineHandler.cs.meta
    │   │   ├── Line.meta
    │   │   ├── Parallel
    │   │   │   ├── Parallel.cs
    │   │   │   ├── Parallel.cs.meta
    │   │   │   ├── ParallelHandler.cs
    │   │   │   └── ParallelHandler.cs.meta
    │   │   ├── Parallel.meta
    │   │   ├── Pie
    │   │   │   ├── Pie.cs
    │   │   │   ├── Pie.cs.meta
    │   │   │   ├── PieHandler.cs
    │   │   │   └── PieHandler.cs.meta
    │   │   ├── Pie.meta
    │   │   ├── Radar
    │   │   │   ├── Radar.cs
    │   │   │   ├── Radar.cs.meta
    │   │   │   ├── RadarHandler.cs
    │   │   │   └── RadarHandler.cs.meta
    │   │   ├── Radar.meta
    │   │   ├── Ring
    │   │   │   ├── Ring.cs
    │   │   │   ├── Ring.cs.meta
    │   │   │   ├── RingHandler.cs
    │   │   │   └── RingHandler.cs.meta
    │   │   ├── Ring.meta
    │   │   ├── Scatter
    │   │   │   ├── BaseScatter.cs
    │   │   │   ├── BaseScatter.cs.meta
    │   │   │   ├── BaseScatterHandler.cs
    │   │   │   ├── BaseScatterHandler.cs.meta
    │   │   │   ├── EffectScatter.cs
    │   │   │   ├── EffectScatter.cs.meta
    │   │   │   ├── EffectScatterHandler.cs
    │   │   │   ├── EffectScatterHandler.cs.meta
    │   │   │   ├── Scatter.cs
    │   │   │   ├── Scatter.cs.meta
    │   │   │   ├── ScatterHandler.cs
    │   │   │   └── ScatterHandler.cs.meta
    │   │   ├── Scatter.meta
    │   │   ├── SerieContext.cs
    │   │   ├── SerieContext.cs.meta
    │   │   ├── Serie.cs
    │   │   ├── Serie.cs.meta
    │   │   ├── SerieDataContext.cs
    │   │   ├── SerieDataContext.cs.meta
    │   │   ├── SerieData.cs
    │   │   ├── SerieData.cs.meta
    │   │   ├── SerieDataLink.cs
    │   │   ├── SerieDataLink.cs.meta
    │   │   ├── Serie.ExtraComponent.cs
    │   │   ├── Serie.ExtraComponent.cs.meta
    │   │   ├── SerieHandler.cs
    │   │   ├── SerieHandler.cs.meta
    │   │   ├── SerieHelper.cs
    │   │   ├── SerieHelper.cs.meta
    │   │   ├── SerieParams.cs
    │   │   ├── SerieParams.cs.meta
    │   │   ├── SeriesHelper.cs
    │   │   └── SeriesHelper.cs.meta
    │   ├── Serie.meta
    │   ├── Theme
    │   │   ├── AxisTheme.cs
    │   │   ├── AxisTheme.cs.meta
    │   │   ├── ComponentTheme.cs
    │   │   ├── ComponentTheme.cs.meta
    │   │   ├── DataZoomTheme.cs
    │   │   ├── DataZoomTheme.cs.meta
    │   │   ├── LegendTheme.cs
    │   │   ├── LegendTheme.cs.meta
    │   │   ├── SerieTheme.cs
    │   │   ├── SerieTheme.cs.meta
    │   │   ├── SubTitleTheme.cs
    │   │   ├── SubTitleTheme.cs.meta
    │   │   ├── Theme.cs
    │   │   ├── Theme.cs.meta
    │   │   ├── ThemeStyle.cs
    │   │   ├── ThemeStyle.cs.meta
    │   │   ├── TitleTheme.cs
    │   │   ├── TitleTheme.cs.meta
    │   │   ├── TooltipTheme.cs
    │   │   ├── TooltipTheme.cs.meta
    │   │   ├── VisualMapTheme.cs
    │   │   └── VisualMapTheme.cs.meta
    │   ├── Theme.meta
    │   ├── Utilities
    │   │   ├── ColorUtil.cs
    │   │   ├── ColorUtil.cs.meta
    │   │   ├── DateTimeUtil.cs
    │   │   ├── DateTimeUtil.cs.meta
    │   │   ├── DefineSymbolsUtil.cs
    │   │   ├── DefineSymbolsUtil.cs.meta
    │   │   ├── PropertyUtil.cs
    │   │   ├── PropertyUtil.cs.meta
    │   │   ├── ReflectionUtil.cs
    │   │   ├── ReflectionUtil.cs.meta
    │   │   ├── RuntimeUtil.cs
    │   │   └── RuntimeUtil.cs.meta
    │   ├── Utilities.meta
    │   ├── XCharts.Runtime.asmdef
    │   ├── XCharts.Runtime.asmdef.meta
    │   ├── XLog
    │   │   ├── XLog.cs
    │   │   └── XLog.cs.meta
    │   ├── XLog.meta
    │   ├── XUGL
    │   │   ├── SVG
    │   │   │   ├── SVG.cs
    │   │   │   ├── SVG.cs.meta
    │   │   │   ├── SVGPath.cs
    │   │   │   ├── SVGPath.cs.meta
    │   │   │   ├── SVGPathSeg.cs
    │   │   │   ├── SVGPathSeg.cs.meta
    │   │   │   ├── SVGPathSegType.cs
    │   │   │   └── SVGPathSegType.cs.meta
    │   │   ├── SVG.meta
    │   │   ├── UGL.cs
    │   │   ├── UGL.cs.meta
    │   │   ├── UGLExample.cs
    │   │   ├── UGLExample.cs.meta
    │   │   ├── UGLHelper.cs
    │   │   └── UGLHelper.cs.meta
    │   └── XUGL.meta
    └── Runtime.meta

75 directories, 868 files

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警