mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 04:20:09 +00:00
88 lines
3.2 KiB
C#
88 lines
3.2 KiB
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
namespace XCharts
|
|
{
|
|
public partial class RingChart
|
|
{
|
|
/// <summary>
|
|
/// 更新指定系列执行数据项的最大值
|
|
/// </summary>
|
|
/// <param name="serieIndex"></param>
|
|
/// <param name="dataIndex"></param>
|
|
/// <param name="value"></param>
|
|
/// <returns></returns>
|
|
public bool UpdateMax(int serieIndex, int dataIndex, double value)
|
|
{
|
|
var serie = m_Series.GetSerie(serieIndex);
|
|
if (serie != null)
|
|
{
|
|
return serie.UpdateData(dataIndex, 1, value);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 更新指定系列的所有数据项的最大值
|
|
/// </summary>
|
|
/// <param name="serieIndex"></param>
|
|
/// <param name="value"></param>
|
|
/// <returns></returns>
|
|
public bool UpdateMax(int serieIndex, double value)
|
|
{
|
|
var serie = m_Series.GetSerie(serieIndex);
|
|
if (serie != null)
|
|
{
|
|
var flag = true;
|
|
for (int i = 0; i < serie.dataCount; i++)
|
|
{
|
|
if (serie.UpdateData(i, 1, value)) flag = false;
|
|
}
|
|
return flag;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 更新第一个系列第一个数据项的最大值
|
|
/// </summary>
|
|
/// <param name="value"></param>
|
|
/// <returns></returns>
|
|
public bool UpdateMax(double value)
|
|
{
|
|
return UpdateMax(0, 0, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds the data with the specified maximum value to the specified serie.
|
|
/// 添加指定最大值的数据到指定系列中。
|
|
/// </summary>
|
|
/// <param name="serieName">the name of serie</param>
|
|
/// <param name="value">the data</param>
|
|
/// <param name="max">the max data</param>
|
|
/// <param name="dataName">the name of data</param>
|
|
/// <returns>Returns True on success</returns>
|
|
public override SerieData AddData(string serieName, double value, double max, string dataName = null)
|
|
{
|
|
return base.AddData(serieName, value, max, dataName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds the data with the specified maximum value to the specified serie.
|
|
/// 添加指定最大值的数据到指定系列中。
|
|
/// </summary>
|
|
/// <param name="serieIndex">the index of serie</param>
|
|
/// <param name="value">the data</param>
|
|
/// <param name="max">the max data</param>
|
|
/// <param name="dataName">the name of data</param>
|
|
/// <returns>Returns True on success</returns>
|
|
public override SerieData AddData(int serieIndex, double value, double max, string dataName = null)
|
|
{
|
|
return base.AddData(serieIndex, value, max, dataName);
|
|
}
|
|
}
|
|
} |