Option Strict On
Option Explicit On

Namespace Nexamas.UI.Visualization

    ''' <summary>
    ''' Small first-stage chart vocabulary for dashboard and report foundations.
    ''' </summary>
    Friend Enum MASChartKind
        Unknown = 0
        Line = 1
        Bar = 2
        Pie = 3
        Donut = 4
        Kpi = 5
        Sparkline = 6
    End Enum

End Namespace
