[feature][heatmap] support symbol

This commit is contained in:
monitor1394
2022-09-06 13:12:50 +08:00
parent ccc5110e8e
commit 83744777c5
5 changed files with 57 additions and 34 deletions

View File

@@ -966,6 +966,11 @@ namespace XCharts.Runtime
serie.symbol.show = true;
serie.symbol.type = SymbolType.EmptyCircle;
}
else if (type == typeof(Heatmap))
{
serie.symbol.show = true;
serie.symbol.type = SymbolType.Rect;
}
else
{
serie.symbol.show = false;