Skip to content

Commit

Permalink
3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
monitor1394 committed Jun 8, 2023
1 parent c8a5560 commit 9c26716
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 2 deletions.
29 changes: 29 additions & 0 deletions Documentation~/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# 更新日志

[master](#master)
[v3.7.0](#v370)
[v3.6.0](#v360)
[v3.5.0](#v350)
[v3.4.0](#v340)
Expand Down Expand Up @@ -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
Expand Down
15 changes: 14 additions & 1 deletion Documentation~/zh/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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`不生效的问题
Expand Down
10 changes: 10 additions & 0 deletions Documentation~/zh/tutorial01.md
Original file line number Diff line number Diff line change
Expand Up @@ -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可通过以下任意一种方式导入到项目:
Expand Down Expand Up @@ -211,6 +219,8 @@ xAxis.boundaryGap = true;
xAxis.type = Axis.AxisType.Category;
```

> 注:低版本没有`EnsureChartComponent()`接口时,用`GetOrAddChartComponent()`
### 改Serie的参数

对于新添加的Serie:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9c26716

Please sign in to comment.