49 lines
685 B
C#
49 lines
685 B
C#
|
/// <summary>
|
|||
|
/// <20><><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>ݽṹ
|
|||
|
/// </summary>
|
|||
|
public struct LineData
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public float y;
|
|||
|
public string name;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <20><><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>ݽṹ
|
|||
|
/// </summary>
|
|||
|
public struct BarData
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public float y;
|
|||
|
public string name;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <20><>ͼ<EFBFBD><CDBC><EFBFBD>ݽṹ
|
|||
|
/// </summary>
|
|||
|
public struct PieData
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public float y;
|
|||
|
public string name;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <20>״<EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>ݽṹ
|
|||
|
/// </summary>
|
|||
|
public struct RadarData
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public float y;
|
|||
|
public string name;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <20><><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>ݽṹ
|
|||
|
/// </summary>
|
|||
|
public struct RingData
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public float y;
|
|||
|
public string name;
|
|||
|
}
|