Class: Playbook::PbGauge::Gauge

Inherits:
Object
  • Object
show all
Includes:
Playbook::Props
Defined in:
app/pb_kits/playbook/pb_gauge/gauge.rb

Instance Method Summary collapse

Methods included from Playbook::Props

#dark_props, #generate_classname, #generate_classname_without_spacing, #initialize, #prop, #spacing_options, #spacing_props, #spacing_values

Instance Method Details

#chart_data_formattedObject



28
29
30
31
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 28

def chart_data_formatted
  chart_data.map { |hash| hash[:y] = hash.delete :value }
  chart_data
end

#chart_optionsObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 33

def chart_options
  {
    id: id,
    chartData: chart_data_formatted,
    circumference: full_circle ? [0, 360] : [-100, 100],
    disableAnimation: disable_animation,
    height: height,
    min: min,
    max: max,
    title: title,
    suffix: suffix,
    prefix: prefix,
    showLabels: show_labels,
    style: style,
    tooltipHtml: tooltip_html,
    type: "gauge",
  }.to_json.html_safe
end

#classnameObject



52
53
54
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 52

def classname
  generate_classname("pb_gauge_kit")
end