mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-17 22:10:11 +00:00
28 lines
956 B
C#
28 lines
956 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.UI;
|
|
|
|
namespace XCharts
|
|
{
|
|
public interface IDrawSerie
|
|
{
|
|
void InitComponent();
|
|
void CheckComponent();
|
|
void Update();
|
|
void DrawBase(VertexHelper vh);
|
|
void DrawSerie(VertexHelper vh, Serie serie);
|
|
void RefreshLabel();
|
|
bool CheckTootipArea(Vector2 local);
|
|
bool OnLegendButtonClick(int index, string legendName, bool show);
|
|
bool OnLegendButtonEnter(int index, string legendName);
|
|
bool OnLegendButtonExit(int index, string legendName);
|
|
void OnPointerDown(PointerEventData eventData);
|
|
}
|
|
} |