拼ui 一些业务逻辑x实现
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace EasyChart
|
||||
{
|
||||
public sealed class ChartInteractionState
|
||||
{
|
||||
private readonly HashSet<string> _hiddenPieSliceIds = new HashSet<string>();
|
||||
|
||||
public ISet<string> HiddenPieSliceIds => _hiddenPieSliceIds;
|
||||
|
||||
public void ClearHiddenPieSliceIds()
|
||||
{
|
||||
_hiddenPieSliceIds.Clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user