mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 09:50:15 +00:00
更新文档
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
* (2019.12.11) 修复`Legend`都隐藏时`Value轴`还显示数值的问题
|
||||||
* (2019.12.11) 修复`Series->Data->Size`重置为0后设置无效的问题
|
* (2019.12.11) 修复`Series->Data->Size`重置为0后设置无效的问题
|
||||||
* (2019.12.06) 修复数据过小时`AxisLabel`直接科学计数法显示的问题
|
* (2019.12.06) 修复数据过小时`AxisLabel`直接科学计数法显示的问题
|
||||||
* (2019.12.04) 优化和完善数据更新`UpdateData`接口
|
* (2019.12.04) 优化和完善数据更新`UpdateData`接口
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.5",
|
"version": "1.0.5",
|
||||||
"date": "20191122",
|
"date": "20191211",
|
||||||
"checkdate": "20191122",
|
"checkdate": "20191211",
|
||||||
"desc": "欢迎 Github 上点 Star 支持,非常感谢!",
|
"desc": "欢迎 Github 上点 Star 支持,非常感谢!",
|
||||||
"homepage": "https://github.com/monitor1394/unity-ugui-XCharts"
|
"homepage": "https://github.com/monitor1394/unity-ugui-XCharts"
|
||||||
}
|
}
|
||||||
127
README.md
127
README.md
@@ -127,133 +127,6 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合
|
|||||||
* 更新日志看这里☞ [XCharts更新日志](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/CHANGELOG.md)
|
* 更新日志看这里☞ [XCharts更新日志](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/CHANGELOG.md)
|
||||||
* 新手教程看这里☞ [教程:5分钟上手XCharts](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/教程:5分钟上手XCharts.md)
|
* 新手教程看这里☞ [教程:5分钟上手XCharts](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/教程:5分钟上手XCharts.md)
|
||||||
|
|
||||||
## 结构
|
|
||||||
|
|
||||||
``` js
|
|
||||||
<root>
|
|
||||||
├── Demo // Demo
|
|
||||||
│ └── Runtime
|
|
||||||
│ ├── Demo_Dynamic.cs
|
|
||||||
│ ├── Demo_LargeData.cs
|
|
||||||
│ ├── Demo_PieChart.cs
|
|
||||||
│ ├── Demo_Test.cs
|
|
||||||
│ ├── Demo.cs
|
|
||||||
│ ├── Demo00_CheatSheet.cs
|
|
||||||
│ ├── Demo10_LineChart.cs
|
|
||||||
│ ├── Demo11_AddSinCurve.cs
|
|
||||||
│ ├── Demo12_CustomDrawing.cs
|
|
||||||
│ ├── Demo13_LineSimple.cs
|
|
||||||
│ ├── Demo20_BarChart.cs
|
|
||||||
│ ├── Demo30_PieChart.cs
|
|
||||||
│ ├── Demo50_Scatter.cs
|
|
||||||
│ └── Demo60_Heatmap.cs
|
|
||||||
├── Editor // Editor相关代码
|
|
||||||
│ ├── PropertyDrawers // 组件Drawer
|
|
||||||
│ │ ├── AnimationDrawer.cs
|
|
||||||
│ │ ├── AreaStyleDrawer.cs
|
|
||||||
│ │ ├── AxisDrawer.cs
|
|
||||||
│ │ ├── AxisLabelDrawer.cs
|
|
||||||
│ │ ├── AxisLineDrawer.cs
|
|
||||||
│ │ ├── AxisNameDrawer.cs
|
|
||||||
│ │ ├── AxisSplitAreaDrawer.cs
|
|
||||||
│ │ ├── AxisTickDrawer.cs
|
|
||||||
│ │ ├── DataZoomDrawer.cs
|
|
||||||
│ │ ├── EmphasisDrawer.cs
|
|
||||||
│ │ ├── GridDrawer.cs
|
|
||||||
│ │ ├── ItemStyleDrawer.cs
|
|
||||||
│ │ ├── LegendDrawer.cs
|
|
||||||
│ │ ├── LineArrowDrawer.cs
|
|
||||||
│ │ ├── LineStyleDrawer.cs
|
|
||||||
│ │ ├── LocationDrawer.cs
|
|
||||||
│ │ ├── RadarDrawer.cs
|
|
||||||
│ │ ├── RadarIndicatorDrawer.cs
|
|
||||||
│ │ ├── SerieDrawer.cs
|
|
||||||
│ │ ├── SerieLabelDrawer.cs
|
|
||||||
│ │ ├── SeriesDrawer.cs
|
|
||||||
│ │ ├── SerieSymbolDrawer.cs
|
|
||||||
│ │ ├── SettingsDrawer.cs
|
|
||||||
│ │ ├── ThemeInfoDrawer.cs
|
|
||||||
│ │ ├── TitleDrawer.cs
|
|
||||||
│ │ ├── TooltipDrawer.cs
|
|
||||||
│ │ ├── VisualMapDrawer.cs
|
|
||||||
│ │ ├── XAxisDrawer.cs
|
|
||||||
│ │ └── YAxisDrawer.cs
|
|
||||||
│ ├── Ultility // Editor相关工具类
|
|
||||||
│ │ └── ChartEditorHelper.cs
|
|
||||||
│ ├── BarChartEditor.cs
|
|
||||||
│ ├── BaseChartEditor.cs
|
|
||||||
│ ├── CoordinateChartEditor.cs
|
|
||||||
│ ├── HeatmapChartEditor.cs
|
|
||||||
│ ├── LineChartEditor.cs
|
|
||||||
│ ├── PieChartEditor.cs
|
|
||||||
│ ├── RadarChartEditor.cs
|
|
||||||
│ └── ScatterChartEditor.cs
|
|
||||||
└── Runtime // 核心代码
|
|
||||||
├── API // Chart API
|
|
||||||
│ ├── BaseChart_API.cs
|
|
||||||
│ └── CoordinateChart_API.cs
|
|
||||||
├── Component // Chart的主组件和子组件
|
|
||||||
│ ├── Main
|
|
||||||
│ │ ├── Axis.cs
|
|
||||||
│ │ ├── DataZoom.cs
|
|
||||||
│ │ ├── Grid.cs
|
|
||||||
│ │ ├── Legend.cs
|
|
||||||
│ │ ├── Radar.cs
|
|
||||||
│ │ ├── Serie.cs
|
|
||||||
│ │ ├── Series.cs
|
|
||||||
│ │ ├── Settings.cs
|
|
||||||
│ │ ├── Theme.cs
|
|
||||||
│ │ ├── Title.cs
|
|
||||||
│ │ ├── Tooltip.cs
|
|
||||||
│ │ └── VisualMap.cs
|
|
||||||
│ ├── Sub
|
|
||||||
│ │ ├── Animation.cs
|
|
||||||
│ │ ├── AreaStyle.cs
|
|
||||||
│ │ ├── AxisLabel.cs
|
|
||||||
│ │ ├── AxisLine.cs
|
|
||||||
│ │ ├── AxisName.cs
|
|
||||||
│ │ ├── AxisSplitName.cs
|
|
||||||
│ │ ├── AxisTick.cs
|
|
||||||
│ │ ├── Emphasis.cs
|
|
||||||
│ │ ├── ItemStyle.cs
|
|
||||||
│ │ ├── LineArrow.cs
|
|
||||||
│ │ ├── LineStyle.cs
|
|
||||||
│ │ ├── Location.cs
|
|
||||||
│ │ ├── SerieData.cs
|
|
||||||
│ │ ├── SerieLabel.cs
|
|
||||||
│ │ └── SerieSymbol.cs
|
|
||||||
│ ├── ChartComponent.cs
|
|
||||||
│ ├── MainComponent.cs
|
|
||||||
│ └── SubComponent.cs
|
|
||||||
├── Helper
|
|
||||||
├── Interface
|
|
||||||
│ ├── IJsonData.cs
|
|
||||||
│ └── IPropertyChanged.cs
|
|
||||||
├── Internal
|
|
||||||
│ ├── AxisPool.cs
|
|
||||||
│ ├── BaseChart.cs
|
|
||||||
│ ├── CoordinateChart_DrawBar.cs
|
|
||||||
│ ├── CoordinateChart_DrawHeatmap.cs
|
|
||||||
│ ├── CoordinateChart_DrawLine.cs
|
|
||||||
│ ├── CoordinateChart_DrawScatter.cs
|
|
||||||
│ ├── CoordinateChart.cs
|
|
||||||
│ ├── JsonDataSupport.cs
|
|
||||||
│ ├── ListPool.cs
|
|
||||||
│ └── ObjectPool.cs
|
|
||||||
├── Template
|
|
||||||
├── Utility
|
|
||||||
│ ├── ChartCached.cs
|
|
||||||
│ ├── ChartDrawer.cs
|
|
||||||
│ └── ChartHelper.cs
|
|
||||||
├── BarChart.cs
|
|
||||||
├── HeatmapChart.cs
|
|
||||||
├── LineChart.cs
|
|
||||||
├── PieChart.cs
|
|
||||||
├── RadarChart.cs
|
|
||||||
└── ScatterChart.cs
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
[更新日志](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/CHANGELOG.md)
|
[更新日志](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/CHANGELOG.md)
|
||||||
|
|||||||
Reference in New Issue
Block a user