Class: Ambling::Column::Settings::PlotArea

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/ambling/column.rb

Overview

PLOT AREA (the area between axes)

Defined Under Namespace

Classes: Margins

Constant Summary collapse

VALUES =
[:color,:alpha,:border_color,:border_alpha,:margins]

Instance Attribute Summary collapse

Method Summary

Methods included from Base

#build_xml, #initialize, #populate, #to_xml

Instance Attribute Details

#alphaObject

0

(0 - 100) if you want it to be different than background color, use bigger than 0 value



390
391
392
# File 'lib/ambling/column.rb', line 390

def alpha
  @alpha
end

#border_alphaObject

0

(0 - 100)



400
401
402
# File 'lib/ambling/column.rb', line 400

def border_alpha
  @border_alpha
end

#border_colorObject

#000000

(hex color code)



395
396
397
# File 'lib/ambling/column.rb', line 395

def border_color
  @border_color
end

#colorObject

[#FFFFFF](hex color code) Separate color codes with comas for gradient



385
386
387
# File 'lib/ambling/column.rb', line 385

def color
  @color
end

#marginsObject

plot area margins



405
406
407
# File 'lib/ambling/column.rb', line 405

def margins
  @margins
end