mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-29 18:28:09 +08:00
23 lines
451 B
C#
23 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WalkingTec.Mvvm.Core
|
|
{
|
|
public class ChartData
|
|
{
|
|
//一级分类
|
|
public string Category { get; set; }
|
|
|
|
public double Value { get; set; }
|
|
//散点图 x值
|
|
public double ValueX { get; set; }
|
|
|
|
//二级分类 不同数据集
|
|
public string Series { get; set; }
|
|
|
|
public double Addition { get; set; }
|
|
|
|
}
|
|
}
|