Class: Playbook::PbLineGraph::LineGraph

Inherits:
Object
  • Object
show all
Includes:
Playbook::Props
Defined in:
app/pb_kits/playbook/pb_line_graph/line_graph.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_optionsObject



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

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



28
29
30
# File 'app/pb_kits/playbook/pb_line_graph/line_graph.rb', line 28

def chart_type
  gradient ? "area" : "line"
end

#classnameObject



51
52
53
# File 'app/pb_kits/playbook/pb_line_graph/line_graph.rb', line 51

def classname
  generate_classname("pb_line_graph")
end