发布1.0.2版本

This commit is contained in:
monitor1394
2019-10-31 09:49:08 +08:00
parent 00996b92d0
commit a4d91b3c4e
5 changed files with 3903 additions and 3529 deletions

View File

@@ -1,6 +1,8 @@
# 更新日志 # 更新日志
* (2019.10.31) 修复`prefab`预设制作报错的问题
* (2019.10.31) 增加访问主题组件API`BaseChart.themeInfo`
* (2019.10.26) 发布`v1.0.1`版本 * (2019.10.26) 发布`v1.0.1`版本
* (2019.10.26) 修复版本检查功能在非运行时异常的问题 * (2019.10.26) 修复版本检查功能在非运行时异常的问题
* (2019.10.26) 增加科学计数法显示数值的支持(查阅`forceENotation`参数) * (2019.10.26) 增加科学计数法显示数值的支持(查阅`forceENotation`参数)

File diff suppressed because it is too large Load Diff

View File

@@ -8,6 +8,7 @@
--- ---
* `BaseChart.themeInfo`:主题组件`ThemeInfo`
* `BaseChart.title`:标题组件`Title` * `BaseChart.title`:标题组件`Title`
* `BaseChart.legend`:图例组件`Legend` * `BaseChart.legend`:图例组件`Legend`
* `BaseChart.tooltip`:提示框组件`Tooltip` * `BaseChart.tooltip`:提示框组件`Tooltip`

View File

@@ -24,8 +24,8 @@ namespace XCharts
public class XChartsMgr : MonoBehaviour public class XChartsMgr : MonoBehaviour
{ {
public const string version = "1.0.1"; public const string version = "1.0.2";
public const int date = 20191026; public const int date = 20191031;
[SerializeField] private string m_NowVersion; [SerializeField] private string m_NowVersion;
[SerializeField] private string m_NewVersion; [SerializeField] private string m_NewVersion;

215
README.md
View File

@@ -131,8 +131,8 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合
## 结构 ## 结构
``` js ``` js
. <root>
├── Demo // Demo ├── Demo // Demo
│ ├── Editor │ ├── Editor
│ │ ├── ChartModuleDrawer.cs │ │ ├── ChartModuleDrawer.cs
│ │ └── DemoEditor.cs │ │ └── DemoEditor.cs
@@ -152,114 +152,111 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合
│ │ ├── Demo50_Scatter.cs │ │ ├── Demo50_Scatter.cs
│ │ ├── Demo60_Heatmap.cs │ │ ├── Demo60_Heatmap.cs
│ └── demo-xchart.unity │ └── demo-xchart.unity
├── Scripts // ├── Editor // Editor相关代
. ├── Editor // Editor相关代码 ├── PropertyDrawers // 组件Drawer
│ ├── PropertyDrawers // 组件Drawer │ ├── AnimationDrawer.cs
│ │ ├── AnimationDrawer.cs │ │ ├── AreaStyleDrawer.cs
│ │ ├── AreaStyleDrawer.cs │ │ ├── AxisDrawer.cs
│ │ ├── AxisDrawer.cs │ │ ├── AxisLabelDrawer.cs
│ │ ├── AxisLabelDrawer.cs │ │ ├── AxisLineDrawer.cs
│ │ ├── AxisLineDrawer.cs │ │ ├── AxisNameDrawer.cs
│ │ ├── AxisNameDrawer.cs │ │ ├── AxisSplitAreaDrawer.cs
│ │ ├── AxisSplitAreaDrawer.cs │ │ ├── AxisTickDrawer.cs
│ │ ├── AxisTickDrawer.cs │ │ ├── DataZoomDrawer.cs
│ │ ├── DataZoomDrawer.cs │ │ ├── EmphasisDrawer.cs
│ │ ├── EmphasisDrawer.cs │ │ ├── GridDrawer.cs
│ │ ├── GridDrawer.cs │ │ ├── ItemStyleDrawer.cs
│ │ ├── ItemStyleDrawer.cs │ │ ├── LegendDrawer.cs
│ │ ├── LegendDrawer.cs │ │ ├── LineArrowDrawer.cs
│ │ ├── LineArrowDrawer.cs │ │ ├── LineStyleDrawer.cs
│ │ ├── LineStyleDrawer.cs │ │ ├── LocationDrawer.cs
│ │ ├── LocationDrawer.cs │ │ ├── RadarDrawer.cs
│ │ ├── RadarDrawer.cs │ │ ├── RadarIndicatorDrawer.cs
│ │ ├── RadarIndicatorDrawer.cs │ │ ├── SerieDrawer.cs
│ │ ├── SerieDrawer.cs │ │ ├── SerieLabelDrawer.cs
│ │ ├── SerieLabelDrawer.cs │ │ ├── SeriesDrawer.cs
│ │ ├── SeriesDrawer.cs │ │ ├── SerieSymbolDrawer.cs
│ │ ├── SerieSymbolDrawer.cs │ │ ├── SettingsDrawer.cs
│ │ ├── SettingsDrawer.cs │ │ ├── ThemeInfoDrawer.cs
│ │ ├── ThemeInfoDrawer.cs │ │ ├── TitleDrawer.cs
│ │ ├── TitleDrawer.cs │ │ ├── TooltipDrawer.cs
│ │ ├── TooltipDrawer.cs │ │ ├── VisualMapDrawer.cs
│ │ ├── VisualMapDrawer.cs │ │ ├── XAxisDrawer.cs
│ │ ── XAxisDrawer.cs │ │ ── YAxisDrawer.cs
└── YAxisDrawer.cs │ ├── Ultility // Editor相关工具类
── Ultility // Editor相关工具类 ── ChartEditorHelper.cs
│ │ └── ChartEditorHelper.cs │ ├── BarChartEditor.cs
│ ├── BarChartEditor.cs │ ├── BaseChartEditor.cs
│ ├── BaseChartEditor.cs │ ├── CoordinateChartEditor.cs
│ ├── CoordinateChartEditor.cs │ ├── HeatmapChartEditor.cs
│ ├── HeatmapChartEditor.cs │ ├── LineChartEditor.cs
│ ├── LineChartEditor.cs │ ├── PieChartEditor.cs
│ ├── PieChartEditor.cs │ ├── RadarChartEditor.cs
── RadarChartEditor.cs ── ScatterChartEditor.cs
└── ScatterChartEditor.cs └── Runtime // 核心代码
── Runtime // 核心代码 ── API // Chart API
├── API // Chart API ├── BaseChart_API.cs
── BaseChart_API.cs ── CoordinateChart_API.cs
│ └── CoordinateChart_API.cs ├── Component // Chart的主组件和子组件
├── Component // Chart的主组件和子组件 ├── Main
│ ├── Main │ ├── Axis.cs
│ │ ├── Axis.cs │ │ ├── DataZoom.cs
│ │ ├── DataZoom.cs │ │ ├── Grid.cs
│ │ ├── Grid.cs │ │ ├── Legend.cs
│ │ ├── Legend.cs │ │ ├── Radar.cs
│ │ ├── Radar.cs │ │ ├── Serie.cs
│ │ ├── Serie.cs │ │ ├── Series.cs
│ │ ├── Series.cs │ │ ├── Settings.cs
│ │ ├── Settings.cs │ │ ├── Theme.cs
│ │ ├── Theme.cs │ │ ├── Title.cs
│ │ ├── Title.cs │ │ ├── Tooltip.cs
│ │ ── Tooltip.cs │ │ ── VisualMap.cs
│ │ └── VisualMap.cs │ ├── Sub
│ ├── Sub │ ├── Animation.cs
│ │ ├── Animation.cs │ │ ├── AreaStyle.cs
│ │ ├── AreaStyle.cs │ │ ├── AxisLabel.cs
│ │ ├── AxisLabel.cs │ │ ├── AxisLine.cs
│ │ ├── AxisLine.cs │ │ ├── AxisName.cs
│ │ ├── AxisName.cs │ │ ├── AxisSplitName.cs
│ │ ├── AxisSplitName.cs │ │ ├── AxisTick.cs
│ │ ├── AxisTick.cs │ │ ├── Emphasis.cs
│ │ ├── Emphasis.cs │ │ ├── ItemStyle.cs
│ │ ├── ItemStyle.cs │ │ ├── LineArrow.cs
│ │ ├── LineArrow.cs │ │ ├── LineStyle.cs
│ │ ├── LineStyle.cs │ │ ├── Location.cs
│ │ ├── Location.cs │ │ ├── SerieData.cs
│ │ ├── SerieData.cs │ │ ├── SerieLabel.cs
│ │ ── SerieLabel.cs │ │ ── SerieSymbol.cs
│ │ └── SerieSymbol.cs │ ├── ChartComponent.cs
│ ├── ChartComponent.cs │ ├── MainComponent.cs
── MainComponent.cs ── SubComponent.cs
│ └── SubComponent.cs ├── Helper
├── Helper ├── Interface
├── Interface ├── IJsonData.cs
── IJsonData.cs ── IPropertyChanged.cs
│ └── IPropertyChanged.cs ├── Internal
├── Internal ├── AxisPool.cs
│ ├── AxisPool.cs │ ├── BaseChart.cs
│ ├── BaseChart.cs │ ├── CoordinateChart_DrawBar.cs
│ ├── CoordinateChart_DrawBar.cs │ ├── CoordinateChart_DrawHeatmap.cs
│ ├── CoordinateChart_DrawHeatmap.cs │ ├── CoordinateChart_DrawLine.cs
│ ├── CoordinateChart_DrawLine.cs │ ├── CoordinateChart_DrawScatter.cs
│ ├── CoordinateChart_DrawScatter.cs │ ├── CoordinateChart.cs
│ ├── CoordinateChart.cs │ ├── JsonDataSupport.cs
│ ├── JsonDataSupport.cs │ ├── ListPool.cs
── ListPool.cs ── ObjectPool.cs
│ └── ObjectPool.cs ├── Template
├── Template ├── Utility
├── Utility ├── ChartCached.cs
│ ├── ChartCached.cs │ ├── ChartDrawer.cs
── ChartDrawer.cs ── ChartHelper.cs
│ └── ChartHelper.cs ├── BarChart.cs
├── BarChart.cs ├── HeatmapChart.cs
├── HeatmapChart.cs ├── LineChart.cs
├── LineChart.cs ├── PieChart.cs
├── PieChart.cs ├── RadarChart.cs
├── RadarChart.cs └── ScatterChart.cs
└── ScatterChart.cs
? directories, ? files
``` ```
## 更新日志 ## 更新日志