Skip to content

PieChartLegendValues🔗

Select values to display in the legend.

  • Percent: The percentage of the whole.

  • Value: The raw numerical value.

Definition🔗

class PieChartLegendValues(enum.StrEnum):
    """
    Select values to display in the legend.
     - Percent: The percentage of the whole.
     - Value: The raw numerical value.
    """

    VALUE = "value"
    PERCENT = "percent"