#define Graph_And_Chart_PRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace ChartAndGraph
{
public abstract class AlignedItemLabels : ItemLabelsBase
{
///
/// Select the alignment of the label relative to the item
///
[SerializeField]
[Tooltip("Select the alignment of the label relative to the item")]
private ChartLabelAlignment alignment;
///
/// Select the alignment of the label relative to the item
///
public ChartLabelAlignment Alignment
{
get { return alignment; }
set { alignment = value; RaiseOnUpdate(); }
}
}
}