2021-11-23 13:20:07 +08:00
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2021-11-23 13:20:07 +08:00
|
|
|
{
|
|
|
|
|
public class ParallelCoordContext : MainComponentContext
|
|
|
|
|
{
|
|
|
|
|
public float x { get; internal set; }
|
|
|
|
|
public float y { get; internal set; }
|
|
|
|
|
public float width { get; internal set; }
|
|
|
|
|
public float height { get; internal set; }
|
|
|
|
|
public Vector3 position { get; internal set; }
|
|
|
|
|
public float left { get; internal set; }
|
|
|
|
|
public float right { get; internal set; }
|
|
|
|
|
public float bottom { get; internal set; }
|
|
|
|
|
public float top { get; internal set; }
|
|
|
|
|
public bool runtimeIsPointerEnter { get; set; }
|
|
|
|
|
internal List<ParallelAxis> parallelAxes = new List<ParallelAxis>();
|
|
|
|
|
}
|
|
|
|
|
}
|