Class: Playbook::PbBarGraph::BarGraph

Inherits:
KitBase
  • Object
show all
Defined in:
app/pb_kits/playbook/pb_bar_graph/bar_graph.rb

Instance Method Summary collapse

Methods inherited from KitBase

#object

Methods included from NumberSpacing

included

Methods included from ZIndex

included

Methods included from Spacing

included, #max_width_options, #max_width_props, #max_width_values, #spacing_options, #spacing_props, #spacing_values

Methods included from Classnames

#generate_classname, #generate_classname_without_spacing, included

Methods included from Playbook::Props

#initialize, #prop

Methods included from Playbook::PbKitHelper

#pb_rails

Methods included from Playbook::PbFormsHelper

#pb_form_with

Instance Method Details

#chart_optionsObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'app/pb_kits/playbook/pb_bar_graph/bar_graph.rb', line 29

def chart_options
  {
    id: id,
    className: classname,
    chartData: chart_data,
    type: chart_type,
    title: title,
    subtitle: subtitle,
    axisTitle: axis_title,
    pointStart: point_start,
    xAxisCategories: x_axis_categories,
    yAxisMin: y_axis_min,
    yAxisMax: y_axis_max,
    legend: legend,
    toggleLegendClick: toggle_legend_click,
    height: height,
  }
end

#chart_typeObject



25
26
27
# File 'app/pb_kits/playbook/pb_bar_graph/bar_graph.rb', line 25

def chart_type
  orientation == "horizontal" ? "bar" : "column"
end

#classnameObject



48
49
50
# File 'app/pb_kits/playbook/pb_bar_graph/bar_graph.rb', line 48

def classname
  generate_classname("pb_bar_graph")
end