Toolkit

TK.Donut

{
    _: TK.Donut,
    Width: 500,
    Height: 300,
    Values: [
        { 
          Name: "Value A", Color: "#F90", Value: 1, 
          ColorLabel: "#F90", ColorLabelLine: "#F00", Extrude: 10
        },
        { Name: "Value B", Color: "#93C", Value: 2 },
        { Name: "Value C", Color: "#09F", Value: 2 }
    ]
}

Donut with legend

{
    _: TK.Donut,
    Width: 500,
    Height: 200,
    Values: [
        { Name: "Value A", Color: "#F90", Value: 1 },
        { Name: "Value B", Color: "#93C", Value: 2 },
        { Name: "Value C", Color: "#09F", Value: 2 }
    ],    
    EnableLegend: true,
    LabelStyle: 1
}

Static simple donut

{
    _: TK.Donut,
    Width: 200,
    Height: 200,
    Values: [
        { Name: "Value A", Color: "#F90", Value: 1 },
        { Name: "Value B", Color: "#93C", Value: 2 },
        { Name: "Value C", Color: "#09F", Value: 2 }
    ],
    EnableLegend: false,
    EnableLabels: false,
    AnimationLength: 0,
    FinalSizeRatio: 1,
    DonutSize: 0.9
}