mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-17 05:34:04 +00:00
17 lines
329 B
Text
17 lines
329 B
Text
|
|
:ruby
|
||
|
|
combined_data ||= {}
|
||
|
|
data ||= chart_values(combined_data)
|
||
|
|
colors ||= chart_colors(combined_data)
|
||
|
|
|
||
|
|
options = {
|
||
|
|
donut: true,
|
||
|
|
legend: 'bottom',
|
||
|
|
download: true,
|
||
|
|
messages: { empty: 'No data' }
|
||
|
|
}
|
||
|
|
options[:colors] = colors if colors.present?
|
||
|
|
|
||
|
|
.text-center
|
||
|
|
%h4= title
|
||
|
|
= pie_chart data, options
|