2021-12-19 20:53:55 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2021-12-19 20:53:55 +08:00
|
|
|
{
|
|
|
|
|
public class SerieParams
|
|
|
|
|
{
|
|
|
|
|
public Type serieType;
|
|
|
|
|
public int serieIndex;
|
|
|
|
|
public string serieName;
|
|
|
|
|
public string marker = "●";
|
|
|
|
|
public string category;
|
|
|
|
|
public int dimension;
|
|
|
|
|
public SerieData serieData;
|
2022-05-22 22:17:38 +08:00
|
|
|
public int dataCount;
|
2021-12-19 20:53:55 +08:00
|
|
|
public double value;
|
|
|
|
|
public double total;
|
|
|
|
|
public Color32 color;
|
|
|
|
|
public string itemFormatter;
|
|
|
|
|
public string numericFormatter;
|
2022-08-11 08:11:43 +08:00
|
|
|
public bool ignore;
|
2021-12-19 20:53:55 +08:00
|
|
|
public List<string> columns = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|