mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-27 11:40:13 +00:00
完善RadarChart的Indicator对\n换行的支持
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
* (2020.11.13) Improved `RadarChart` `Indicator` support for `\n` line feed
|
||||||
* (2020.11.12) Fixed `LineChart` reporting errors when the type was `Smooth` when the data was too secure #100
|
* (2020.11.12) Fixed `LineChart` reporting errors when the type was `Smooth` when the data was too secure #100
|
||||||
* (2020.10.22) Improve the support of `VisualMap` for `Piecewise` in `HeatmapChart`
|
* (2020.10.22) Improve the support of `VisualMap` for `Piecewise` in `HeatmapChart`
|
||||||
* (2020.09.22) Fixed `PieChart` inconsistent border size
|
* (2020.09.22) Fixed `PieChart` inconsistent border size
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
* (2020.11.13) 完善`RadarChart`的`Indicator`对`\n`换行的支持
|
||||||
* (2020.11.12) 修复`LineChart`当类型为`Smooth`时数据过密情况下报错的问题 #100
|
* (2020.11.12) 修复`LineChart`当类型为`Smooth`时数据过密情况下报错的问题 #100
|
||||||
* (2020.10.22) 完善`HeatmapChart`中`VisualMap`对`Piecewise`的支持
|
* (2020.10.22) 完善`HeatmapChart`中`VisualMap`对`Piecewise`的支持
|
||||||
* (2020.09.22) 修复`PieChart`边框大小不一致的问题
|
* (2020.09.22) 修复`PieChart`边框大小不一致的问题
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ namespace XCharts
|
|||||||
/// The name of indicator.
|
/// The name of indicator.
|
||||||
/// 指示器名称。
|
/// 指示器名称。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string name { get { return m_Name; } set { m_Name = value; } }
|
public string name { get { return FormatterHelper.TrimAndReplaceLine(m_Name); } set { m_Name = value; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The maximum value of indicator, with default value of 0, but we recommend to set it manually.
|
/// The maximum value of indicator, with default value of 0, but we recommend to set it manually.
|
||||||
/// 指示器的最大值,默认为 0 无限制。
|
/// 指示器的最大值,默认为 0 无限制。
|
||||||
|
|||||||
Reference in New Issue
Block a user