Gauge

SVG donut/gauge chart component.

python 8 params

Preview

72%
Disk used
Arguments
gauge(value=72, max_value=100, label='Disk used')

Usage

views.py
python
from djust import LiveView
from djust.components import Gauge


class MyView(LiveView):
    template_name = "my_template.html"

    def mount(self, request, **kwargs):
        self.component = Gauge(value=72, max_value=100, label='Disk used')
my_template.html
django
{{ component }}

Parameters

NameTypeDefault
valuefloat0
max_valuefloat100
labelstr''
colorstr'primary'
sizestr'md'
show_valueboolTrue
custom_classstr''
**kwargs— passed to `Component.__init__`: `name=` identifies the instance in the events it sends, `id=` sets `component.id`, and any other keyword is kept as state
Source & styles
FilePathNotes
moduledjust.components.components.gaugeSubclass it, or pass custom_class, to change how it renders.
cssdjust_components/components.cssDefines 6 of this component's classes at line 841, 842, 843, 844, 849, 850. Override those rules, or the custom properties they read, in a stylesheet loaded after it.