mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-14 20:00:09 +00:00
增加Scatter的ignore支持设置忽略数据
This commit is contained in:
@@ -80,6 +80,8 @@ slug: /changelog
|
||||
|
||||
## master
|
||||
|
||||
* (2025.10.30) 增加`Scatter`的`ignore`支持设置忽略数据
|
||||
* (2025.10.24) 优化`Sankey`的线条绘制排序
|
||||
* (2025.10.22) 增加`Pie`的`pieType`支持实心饼图和线框柄图 (#349)
|
||||
* (2025.09.05) 优化`MarkLine`的表现
|
||||
* (2025.09.01) 增加`AxisLine`的`startExtendLength`和`endExtendLength`设置轴线的延长线
|
||||
|
||||
@@ -18,6 +18,8 @@ namespace XCharts.Editor
|
||||
}
|
||||
PropertyField("m_MaxCache");
|
||||
PropertyField("m_Clip");
|
||||
PropertyField("m_Ignore");
|
||||
PropertyField("m_IgnoreValue");
|
||||
|
||||
PropertyField("m_Symbol");
|
||||
PropertyField("m_ItemStyle");
|
||||
|
||||
@@ -166,6 +166,8 @@ namespace XCharts.Runtime
|
||||
var symbol = SerieHelper.GetSerieSymbol(serie, serieData);
|
||||
if (!symbol.ShowSymbol(serieData.index, maxCount))
|
||||
continue;
|
||||
if (serie.IsIgnoreValue(serieData))
|
||||
continue;
|
||||
|
||||
var state = SerieHelper.GetSerieState(serie, serieData, true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user