From 9c26716e7cfb7ae36a1e80733e9c8a8caffd527b Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Thu, 8 Jun 2023 08:18:01 +0800 Subject: [PATCH] 3.7.0 --- Documentation~/en/changelog.md | 29 +++++++++++++++++++++++++++++ Documentation~/zh/changelog.md | 15 ++++++++++++++- Documentation~/zh/tutorial01.md | 10 ++++++++++ README.md | 2 +- 4 files changed, 54 insertions(+), 2 deletions(-) diff --git a/Documentation~/en/changelog.md b/Documentation~/en/changelog.md index 89ae3019..f3efe7ea 100644 --- a/Documentation~/en/changelog.md +++ b/Documentation~/en/changelog.md @@ -2,6 +2,7 @@ # 更新日志 [master](#master) +[v3.7.0](#v370) [v3.6.0](#v360) [v3.5.0](#v350) [v3.4.0](#v340) @@ -61,6 +62,34 @@ ## master +## v3.7.0 + +Highlights: + +* Added `HelpDoc` official website help document redirection +* Added support for `Clip` for `Line` +* Optimize the range Settings of `Axis` +* Other optimizations and fixes + +Log details: + +* (2022.06.08) Release v3.7.0 +* (2023.06.04) Added `HelpDoc` help document skip +* (2023.05.30) Fix to Serie name with `_` line causing `Legend` to not fire (#252) (by __svr2kos2__) +* (2023.05.10) Added `MinMaxAuto` range type for `Axis` +* (2023.05.10) Added support for `Clip` for `Line` +* (2023.05.04) Fixed `Axis` setting` CeilRate `not taking effect in range -1 to 1 +* (2023.05.04) Optimizes MinMax type range calculations for Axis +* (2023.05.04) Fix to AxisLabel displaying `Label` formatting incorrectly when the data is all floating point numbers less than 1 +* (2023.05.04) Fix to `Theme` being reset after modifying default theme parameters +* (2023.05.04) Added `Warning` when `Symbol` selects `Custom` type +* (2023.04.15) Fix to `DataZoom` may be abnormal in multiple charts (#252) +* (2023.04.14) Fix to `Tooltip` may be abnormal when there is only one data +* (2023.04.14) added `BaseChart`s `TriggerTooltip()` interface to try to trigger `ToolTip` +* (2023.04.12) Optimizes` RadarCood `setting` startAngle `with text following the adjustment position +* (2023.04.12) Added `Radar` support for wildcard `{b}` +* (2023.04.11) Fixed an issue where Inspector could be abnormal when dynamically adding components + ## v3.6.0 * (2023.04.01) Release `v3.6.0` version diff --git a/Documentation~/zh/changelog.md b/Documentation~/zh/changelog.md index 369042ad..d6a862c8 100644 --- a/Documentation~/zh/changelog.md +++ b/Documentation~/zh/changelog.md @@ -6,7 +6,7 @@ slug: /changelog # 更新日志 [master](#master) -[v3.6.0](#v360) +[v3.7.0](#v370) [v3.5.0](#v350) [v3.4.0](#v340) [v3.3.0](#v330) @@ -66,7 +66,20 @@ slug: /changelog ## master +## v3.7.0 + +版本要点: + +* 增加`HelpDoc`官网帮助文档跳转 +* 增加`Line`对`Clip`的支持 +* 优化`Axis`的范围设置 +* 其他优化和修复 + +日志详情: + +* (2023.06.08) 发布`v3.7.0`版本 * (2023.06.04) 增加`HelpDoc`帮助文档跳转 +* (2023.05.30) 修复`Serie`的名字带`_`线导致`Legend`无法触发的问题 (#252) (by __svr2kos2__) * (2023.05.10) 增加`Axis`的`MinMaxAuto`范围类型 * (2023.05.10) 增加`Line`对`Clip`的支持 * (2023.05.04) 优化`Axis`在-1到1范围时设置`CeilRate`不生效的问题 diff --git a/Documentation~/zh/tutorial01.md b/Documentation~/zh/tutorial01.md index 855cac94..2d0732d8 100644 --- a/Documentation~/zh/tutorial01.md +++ b/Documentation~/zh/tutorial01.md @@ -6,6 +6,14 @@ slug: /tutorial01 # 教程:5分钟上手 XCharts 3.0 +> 注:本教程适用XCharts 3.x版本,2.x版本请看 [教程:5分钟上手XCharts 2.0](https://github.com/XCharts-Team/XCharts/blob/2.0/Doc/教程:5分钟上手XCharts.md) + +## 使用 XCharts 前需要掌握什么 + +- 会简单使用Unity +- 了解UGUI,会使用UGUI +- 了解Unity的MonoBehavior脚本用法,知道怎么挂脚本,用代码操作脚本 + ## 获取和导入 XCharts XCharts可通过以下任意一种方式导入到项目: @@ -211,6 +219,8 @@ xAxis.boundaryGap = true; xAxis.type = Axis.AxisType.Category; ``` +> 注:低版本没有`EnsureChartComponent()`接口时,用`GetOrAddChartComponent()` + ### 改Serie的参数 对于新添加的Serie: diff --git a/README.md b/README.md index 76ffae63..15f9b36e 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ [XCharts3.0 官方主页](https://xcharts-team.github.io) [XCharts3.0 在线示例](https://xcharts-team.github.io/examples) -[XCharts3.0 教程](Documentation~/zh/tutorial01.md) +[XCharts3.0 教程:5分钟上手 XCharts](Documentation~/zh/tutorial01.md) [XCharts3.0 API](Documentation~/zh/api.md) [XCharts3.0 问答](Documentation~/zh/faq.md) [XCharts3.0 配置项手册](Documentation~/zh/configuration.md)