#define Graph_And_Chart_PRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ChartAndGraph
{
public enum GroupLabelAlignment
{
///
/// add the label at the center of each group
///
Center,
///
/// add the label at the end of each group
///
EndOfGroup,
///
/// add the label at the begining of each group
///
BeginingOfGroup,
///
/// alternate between both sides of the group
///
AlternateSides,
///
/// add a label at the top of each bar
///
BarTop,
///
/// add a label at the bottom of each bar
///
BarBottom,
///
/// add a label at the first bar of each group
///
FirstBar
}
}