Fixed axis label may not be updated when datazoom is turn on (#164)

This commit is contained in:
monitor1394
2021-08-22 07:55:16 +08:00
parent 3949018555
commit c5ef7e765b
3 changed files with 8 additions and 0 deletions

View File

@@ -39,6 +39,7 @@
## master
* (2021.08.22) Fixed `Axis` label may not be updated when `DataZoom` is turn on (#164)
* (2021.08.15) Improved `Axis`'s `AxisLabel` text rotate setting to avoid inconsistency offset in `DataZoom` (#163)
* (2021.08.14) Added `Legend`'s `textAutoColor` to set the text color match with `Serie` color (#163)
* (2021.08.12) Optimize `BarChart` setting `Corner` when the positive and negative columns are fillet symmetric

View File

@@ -39,6 +39,7 @@
## master
* (2021.08.22) 修复`Axis``DataZoom`开启时`Label`可能不更新的问题 (#164)
* (2021.08.15) 优化`Axis``AxisLabel`文本旋转设置避免在DataZoom开启时偏移不一致 (#163)
* (2021.08.14) 增加`Legend``textAutoColor`设置文本颜色和`Serie`一致 (#163)
* (2021.08.12) 优化`BarChart`设置`Corner`时正负柱条圆角对称

View File

@@ -489,6 +489,12 @@ namespace XCharts
return axis;
}
public override void SetComponentDirty()
{
m_NeedUpdateFilterData = true;
base.SetComponentDirty();
}
public void Copy(Axis axis)
{
show = axis.show;