SunnyUI/SunnyUI/Charts/UIPieChartOption.cs
2025-01-07 22:19:21 +08:00

344 lines
8.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/******************************************************************************
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
* CopyRight (C) 2012-2025 ShenYongHua(沈永华).
* QQ群56829229 QQ17612584 EMailSunnyUI@QQ.Com
*
* Blog: https://www.cnblogs.com/yhuse
* Gitee: https://gitee.com/yhuse/SunnyUI
* GitHub: https://github.com/yhuse/SunnyUI
*
* SunnyUI.dll can be used for free under the GPL-3.0 license.
* If you use this code, please keep this note.
* 如果您使用此代码,请保留此说明。
******************************************************************************
* 文件名称: UIPieChartOption.cs
* 文件说明: 饼状图配置类
* 当前版本: V3.1
* 创建日期: 2020-06-06
*
* 2020-06-06: V2.2.5 增加文件说明
* 2022-11-25: V3.2.2 重构对象
******************************************************************************/
using System;
using System.Collections.Generic;
using System.Drawing;
namespace Sunny.UI
{
public sealed class UIPieOption : UIOption, IDisposable
{
public readonly List<UIPieSeries> Series = new List<UIPieSeries>();
public UIPieToolTip ToolTip { get; set; } = new UIPieToolTip();
public void AddSeries(UIPieSeries series)
{
if (series == null)
{
throw new NullReferenceException("series 不能为空");
}
if (series.Name.IsNullOrEmpty())
{
throw new NullReferenceException("series.Name 不能为空");
}
Series.Clear();
Series.Add(series);
}
/// <summary>
/// 析构函数
/// </summary>
public void Dispose()
{
foreach (var series in Series)
{
series?.Dispose();
}
Series.Clear();
}
public int SeriesCount => Series.Count;
public UIPieSeries this[string seriesName]
{
get
{
foreach (var item in Series)
{
if (item.Name == seriesName) return item;
}
return null;
}
}
private int decimalPlaces = 0;
public int DecimalPlaces
{
get => decimalPlaces;
set => decimalPlaces = Math.Max(0, value);
}
}
public class UIDoughnutOption : UIOption, IDisposable
{
public readonly List<UIDoughnutSeries> Series = new List<UIDoughnutSeries>();
public UIPieToolTip ToolTip { get; set; } = new UIPieToolTip();
public void AddSeries(UIDoughnutSeries series)
{
if (series == null)
{
throw new NullReferenceException("series 不能为空");
}
if (series.Name.IsNullOrEmpty())
{
throw new NullReferenceException("series.Name 不能为空");
}
Series.Clear();
Series.Add(series);
}
/// <summary>
/// 析构函数
/// </summary>
public void Dispose()
{
foreach (var series in Series)
{
series?.Dispose();
}
Series.Clear();
}
public int SeriesCount => Series.Count;
public UIDoughnutSeries this[string seriesName]
{
get
{
foreach (var item in Series)
{
if (item.Name == seriesName) return item;
}
return null;
}
}
private int decimalPlaces = 0;
public int DecimalPlaces
{
get => decimalPlaces;
set => decimalPlaces = Math.Max(0, value);
}
}
public class UIPieToolTip : UIChartToolTip
{
public UIPieToolTip()
{
Formatter = "{{a}}" + '\n' + "{{b}} : {{c}} ({{d}}%)";
Visible = true;
}
}
public class UIPieSeries : IDisposable
{
public string Name { get; set; }
public UISeriesType Type => UISeriesType.Pie;
public int Radius { get; set; } = 70;
public UICenter Center { get; set; } = new UICenter(50, 50);
internal readonly List<UIPieSeriesData> Data = new List<UIPieSeriesData>();
public readonly UIPieSeriesLabel Label = new UIPieSeriesLabel();
public delegate Color OnDataColorChangeEventHandler(double data);
public event OnDataColorChangeEventHandler DataColorChange;
public void AddData(string name, double value)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
if (DataColorChange != null)
{
Color color = DataColorChange.Invoke(value);
Data.Add(new UIPieSeriesData(name, value, color));
}
else
{
Data.Add(new UIPieSeriesData(name, value));
}
}
public void AddData(string name, double value, Color color)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
Data.Add(new UIPieSeriesData(name, value, color));
}
/// <summary>
/// 析构函数
/// </summary>
public void Dispose()
{
Data.Clear();
}
public void Update(string name, double value)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
foreach (var item in Data)
{
if (item.Name == name)
item.Value = value;
}
}
}
public class RadiusInOut
{
public int Inner { get; set; }
public int Outer { get; set; }
public RadiusInOut(int inner, int outer)
{
Inner = inner;
Outer = outer;
}
}
public class UIDoughnutSeries : IDisposable
{
public string Name { get; set; }
public UISeriesType Type { get; set; }
public RadiusInOut Radius { get; set; } = new RadiusInOut(50, 70);
public UICenter Center { get; set; } = new UICenter(50, 50);
internal readonly List<UIPieSeriesData> Data = new List<UIPieSeriesData>();
public UIPieSeriesLabel Label = new UIPieSeriesLabel();
public void AddData(string name, double value)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
Data.Add(new UIPieSeriesData(name, value));
}
public void AddData(string name, double value, Color color)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
Data.Add(new UIPieSeriesData(name, value, color));
}
/// <summary>
/// 析构函数
/// </summary>
public void Dispose()
{
Data.Clear();
}
public void Update(string name, double value)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
foreach (var item in Data)
{
if (item.Name == name)
item.Value = value;
}
}
}
public class UIPieSeriesData
{
public string Name { get; set; }
public double Value { get; set; }
public Color Color { get; set; }
public bool StyleCustomMode { get; private set; }
public UIPieSeriesData(string name, double value)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
Name = name;
Value = value;
StyleCustomMode = false;
}
public UIPieSeriesData(string name, double value, Color color)
{
if (name.IsNullOrEmpty())
{
throw new NullReferenceException("name 不能为空");
}
Name = name;
Value = value;
Color = color;
StyleCustomMode = true;
}
}
public class UIPieSeriesLabel
{
public bool Show { get; set; } = false;
public UIPieSeriesLabelPosition Position { get; set; } = UIPieSeriesLabelPosition.Center;
public string Formatter { get; set; } = "{{b}}";
}
public enum UIPieSeriesLabelPosition
{
Outside,
Inside,
Center
}
}