using System; using System.Collections.Generic; using System.Text; namespace OpenFlashChart { //trick ,use class as enum. public static class DotType { public const string SOLID_DOT = "solid-dot"; public const string HOLLOW_DOT = "hollow-dot"; public const string ANCHOR = "anchor"; public const string STAR = "star"; public const string BOW = "bow"; public const string DOT = "dot"; } }