#define Graph_And_Chart_PRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace ChartAndGraph
{
///
/// lerps the material changes of the chart item. This is used to achive smooth transition between the chart item colors.
///
class ChartItemMaterialLerpEffect : MonoBehaviour
{
///
/// the speed of the interpolation between the materials
///
public float LerpTime = 1f;
}
}