llms_sd_dashboard_donut_widget( string $title, float $perc, string $text = '', string $size = 'medium' )

Displays a donut chart widget


Parameters Parameters

$title

(string) (Required) Title of the widget.

$perc

(float) (Required) donut chart percentage.

$text

(string) (Optional) Text to display within the donut.

Default value: ''

$size

(string) (Optional) Size of the chart.

Default value: 'medium'


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms.functions.templates.dashboard.widgets.php

function llms_sd_dashboard_donut_widget( $title, $perc, $text = '', $size = 'medium' ) {

	llms_sd_dashboard_widget( $title, llms_get_donut( $perc, $text, $size ) );

}


Top ↑

Changelog Changelog

Changelog
Version Description
3.24.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.