UI update 02
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace XCharts.Runtime
|
||||
{
|
||||
public class SerieParams
|
||||
{
|
||||
public Type serieType;
|
||||
public int serieIndex;
|
||||
public string serieName;
|
||||
public string marker = "●";
|
||||
public bool isSecondaryMark;
|
||||
public string category;
|
||||
public int dimension;
|
||||
public SerieData serieData;
|
||||
public int dataCount;
|
||||
public double value;
|
||||
public double total;
|
||||
public Color32 color;
|
||||
public string itemFormatter;
|
||||
public string numericFormatter;
|
||||
public bool ignore;
|
||||
public List<string> columns = new List<string>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user