33 lines
893 B
C#
Raw Normal View History

2025-09-08 14:51:28 +08:00
#define Graph_And_Chart_PRO
using UnityEngine;
using System.Collections;
namespace ChartAndGraph.Axis
{
public partial class AxisGenerator : MonoBehaviour,IAxisGenerator
{
partial void InnerFixLabels(AnyChart parent);
partial void InnerSetAxis(double scrollOffset, AnyChart parent, AxisBase axis, ChartOrientation axisOrientation, int divType);
public void FixLabels(AnyChart parent)
{
InnerFixLabels(parent);
}
public void SetAxis(double scrollOffset, AnyChart parent, AxisBase axis, ChartOrientation axisOrientation, int divType)
{
InnerSetAxis(scrollOffset, parent, axis, axisOrientation, divType);
}
public UnityEngine.Object This()
{
return this;
}
public GameObject GetGameObject()
{
return gameObject;
}
}
}