增加LiquidChart数据变更动画#83

This commit is contained in:
monitor1394
2020-08-11 09:25:28 +08:00
parent 5d79a769c4
commit c335140eff
3 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# 更新日志
* (2020.08.11) Added `LiquidChart` data change animation#83
* (2020.08.11) Optimize `PieChart` text stack and lead line effects#85
* (2020.08.08) Optimize `LineChart` the rendering performance of dense data
* (2020.07.30) Added `LineChart` to configure gradient through `VisualMap` or `ItemStyle`#78

View File

@@ -1,6 +1,7 @@
# 更新日志
* (2020.08.11) 增加`LiquidChart`数据变更动画#83
* (2020.08.11) 优化`PieChart`文本堆叠和引线效果#85
* (2020.08.08) 优化`LineChart`密集数据的绘制表现效果
* (2020.07.30) 增加`LineChart`可通过`VisualMap``ItemStyle`配置渐变#78

View File

@@ -149,8 +149,8 @@ namespace XCharts
var radius = vessel.runtimeInnerRadius;
var serieData = serie.GetSerieData(0);
if (serieData == null) return;
var value = serieData.GetData(1);
var dataChangeDuration = serie.animation.GetUpdateAnimationDuration();
var value = serieData.GetCurrData(1, dataChangeDuration);
if (serie.runtimeCheckValue != value)
{
serie.runtimeCheckValue = value;