#define Graph_And_Chart_PRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ChartAndGraph
{
///
/// Enumeration for the format of axis label data.
///
public enum AxisFormat
{
///
/// format the labels as floating point numbers
///
Number,
///
/// format the labels as time of day
///
Time,
///
/// format the labels as date only
///
Date,
///
/// format the labels as date and time
///
DateTime,
}
}