Sha256: 83e4c69b842073d59b624cdbb4056c00f0bba522499abe4f585a627ced0ddb57

Contents?: true

Size: 1.42 KB

Versions: 5

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbBarGraph
    class BarGraph
      include Playbook::Props
      partial "pb_bar_graph/bar_graph"

      prop :axis_title
      prop :chart_data, type: Playbook::Props::Array,
                        default: []
      prop :orientation, type: Playbook::Props::Enum,
                         values: %w[vertical horizontal],
                         default: "vertical"
      prop :point_start, type: Playbook::Props::Numeric
      prop :subtitle
      prop :title
      prop :x_axis_categories, type: Playbook::Props::Array,
                                default:[]
      prop :y_axis_min, type: Playbook::Props::Numeric
      prop :y_axis_max, type: Playbook::Props::Numeric
      prop :legend, type: Playbook::Props::Boolean,
                    default: false
      prop :height

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

      def chart_options
        {
          id: id,
          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,
          height: height,
        }.to_json.html_safe
      end

      def classname
        generate_classname("pb_bar_graph")
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
playbook_ui-4.18.1 app/pb_kits/playbook/pb_bar_graph/bar_graph.rb
playbook_ui-4.18.0 app/pb_kits/playbook/pb_bar_graph/bar_graph.rb
playbook_ui-4.17.0 app/pb_kits/playbook/pb_bar_graph/bar_graph.rb
playbook_ui-4.17.0.pre.alpha1 app/pb_kits/playbook/pb_bar_graph/bar_graph.rb
playbook_ui-4.16.0 app/pb_kits/playbook/pb_bar_graph/bar_graph.rb