Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SerieParams.cs 650B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace XCharts.Runtime
  5. {
  6. public class SerieParams
  7. {
  8. public Type serieType;
  9. public int serieIndex;
  10. public string serieName;
  11. public string marker = "●";
  12. public string category;
  13. public int dimension;
  14. public SerieData serieData;
  15. public int dataCount;
  16. public double value;
  17. public double total;
  18. public Color32 color;
  19. public string itemFormatter;
  20. public string numericFormatter;
  21. public bool ignore;
  22. public List<string> columns = new List<string>();
  23. }
  24. }