All files / src/constants widget-data.ts

0% Statements 0/34
0% Branches 0/8
0% Functions 0/4
0% Lines 0/30

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48                                                                                               
export const SeriesType = {
    Area: 'area',
    BarX: 'bar-x',
    BarY: 'bar-y',
    Line: 'line',
    Pie: 'pie',
    Scatter: 'scatter',
    Treemap: 'treemap',
    Waterfall: 'waterfall',
} as const;
 
export enum DashStyle {
    Dash = 'Dash',
    DashDot = 'DashDot',
    Dot = 'Dot',
    LongDash = 'LongDash',
    LongDashDot = 'LongDashDot',
    LongDashDotDot = 'LongDashDotDot',
    ShortDash = 'ShortDash',
    ShortDashDot = 'ShortDashDot',
    ShortDashDotDot = 'ShortDashDotDot',
    ShortDot = 'ShortDot',
    Solid = 'Solid',
}
 
export enum SymbolType {
    Circle = 'circle',
    Diamond = 'diamond',
    Square = 'square',
    Triangle = 'triangle',
    TriangleDown = 'triangle-down',
}
 
export enum LineCap {
    Butt = 'butt',
    Round = 'round',
    Square = 'square',
    None = 'none',
}
 
export enum LayoutAlgorithm {
    Binary = 'binary',
    Dice = 'dice',
    Slice = 'slice',
    SliceDice = 'slice-dice',
    Squarify = 'squarify',
}