拼ui 一些业务逻辑x实现

This commit is contained in:
2026-03-19 06:15:09 +08:00
parent f5c6f143c0
commit 49e45ac464
1118 changed files with 246518 additions and 5368 deletions
@@ -0,0 +1,20 @@
using System;
namespace EasyChart
{
[Flags]
internal enum ChartDirtyReason
{
None = 0,
DataAssigned = 1 << 0,
DataMutated = 1 << 1,
ProfileApplied = 1 << 2,
ServicesChanged = 1 << 3,
GeometryChanged = 1 << 4,
CategoryWindowChanged = 1 << 5,
LegendTogglePieSlice = 1 << 6,
LegendToggleSeriesVisibility = 1 << 7,
LayoutRefresh = 1 << 8,
Tooltip = 1 << 9,
}
}