AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
IDrawSerie.cs
1 /************************************************/
2 /* */
3 /* Copyright (c) 2018 - 2021 monitor1394 */
4 /* https://github.com/monitor1394 */
5 /* */
6 /************************************************/
7 
8 using UnityEngine;
9 using UnityEngine.EventSystems;
10 using UnityEngine.UI;
11 
12 namespace XCharts
13 {
14  public interface IDrawSerie
15  {
16  void InitComponent();
17  void CheckComponent();
18  void Update();
19  void DrawBase(VertexHelper vh);
20  void DrawSerie(VertexHelper vh, Serie serie);
21  void RefreshLabel();
22  bool CheckTootipArea(Vector2 local);
23  bool OnLegendButtonClick(int index, string legendName, bool show);
24  bool OnLegendButtonEnter(int index, string legendName);
25  bool OnLegendButtonExit(int index, string legendName);
26  void OnPointerDown(PointerEventData eventData);
27  }
28 }
XCharts.IDrawSerie
Definition: IDrawSerie.cs:14
XCharts
Definition: RewardChart.cs:14
XCharts.Serie
系列。每个系列通过 type 决定自己的图表类型。
Definition: Serie.cs:261