mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-19 15:00:08 +00:00
3.0 - unitypackage
This commit is contained in:
24
Runtime/Component/Tooltip/TooltipContext.cs
Normal file
24
Runtime/Component/Tooltip/TooltipContext.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using XUGL;
|
||||
|
||||
namespace XCharts
|
||||
{
|
||||
public class TooltipData
|
||||
{
|
||||
public string title;
|
||||
public List<SerieParams> param = new List<SerieParams>();
|
||||
}
|
||||
|
||||
public class TooltipContext
|
||||
{
|
||||
public Vector2 pointer;
|
||||
public float width;
|
||||
public float height;
|
||||
public TooltipData data = new TooltipData();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user