Class: ProductDecorator
- Inherits:
-
GraphDecoration
- Object
- GraphDecoration
- ProductDecorator
- Defined in:
- lib/graph_decorator.rb
Overview
a concrete decorator provides the data for the super class decorator according to the requirement of single colum or double column or triple column. another concrete decorator
Instance Method Summary collapse
-
#initialize(real_graph) ⇒ ProductDecorator
constructor
this functionality initialises with the data from the application models.
Methods inherited from GraphDecoration
#doubleChart, #multipleChart, #singleChart
Constructor Details
#initialize(real_graph) ⇒ ProductDecorator
this functionality initialises with the data from the application models
192 193 194 195 196 197 198 199 200 201 |
# File 'lib/graph_decorator.rb', line 192 def initialize(real_graph) super(real_graph) @y_name_1 = "Actual Price" @y_name_2 = "Offer Price" @y_data_1 = Product.select("price").group_by{|o| o.price}.keys @y_data_2 = Product.select("offerPrice").group_by{|o| o.offerPrice}.keys @x_name = Product.select("name").group_by{|o| o.name}.keys @y_data_3 = Product.select("quantityAvailable").group_by{|o| o.quantityAvailable}.keys @y_name_3 = "Quantity Available" end |