lib/axlsx/drawing/cat_axis.rb in axlsx-1.1.3 vs lib/axlsx/drawing/cat_axis.rb in axlsx-1.1.4
- old
+ new
@@ -15,10 +15,20 @@
# The offset of the labels
# must be between a string between 0 and 1000
# @return [Integer]
attr_reader :lblOffset
+
+ # The number of tick lables to skip between labels
+ # @return [Integer]
+ attr_reader :tickLblSkip
+
+ # The number of tickmarks to be skipped before the next one is rendered.
+ # @return [Boolean]
+ attr_reader :tickMarkSkip
+
+
# regex for validating label offset
LBL_OFFSET_REGEX = /0*(([0-9])|([1-9][0-9])|([1-9][0-9][0-9])|1000)%/
# Creates a new CatAxis object
# @param [Integer] axId the id of this axis. Inherited
@@ -27,17 +37,29 @@
# @option options [Symbol] tickLblPos. Inherited
# @option options [Symbol] crosses. Inherited
# @option options [Boolean] auto
# @option options [Symbol] lblAlgn
# @option options [Integer] lblOffset
+ # @option options [Integer] tickLblSkip
+ # @option options [Integer] tickMarkSkip
def initialize(axId, crossAx, options={})
+ @tickLblSkip = 1
+ @tickMarkSkip = 1
self.auto = 1
self.lblAlgn = :ctr
self.lblOffset = "100%"
super(axId, crossAx, options)
end
+
+ # @see tickLblSkip
+ def tickLblSkip=(v) Axlsx::validate_unsigned_int(v); @tickLblSkip = v; end
+
+ # @see tickMarkSkip
+ def tickMarkSkip=(v) Axlsx::validate_unsigned_int(v); @tickMarkSkip = v; end
+
+
# From the docs: This element specifies that this axis is a date or text axis based on the data that is used for the axis labels, not a specific choice.
def auto=(v) Axlsx::validate_boolean(v); @auto = v; end
# specifies how the perpendicular axis is crossed
# must be one of [:ctr, :l, :r]
@@ -54,9 +76,11 @@
str << '<c:catAx>'
super(str)
str << '<c:auto val="' << @auto.to_s << '"/>'
str << '<c:lblAlgn val="' << @lblAlgn.to_s << '"/>'
str << '<c:lblOffset val="' << @lblOffset.to_s << '"/>'
+ str << '<c:tickLblSkip val="' << @tickLblSkip.to_s << '"/>'
+ str << '<c:tickMarkSkip val="' << @tickMarkSkip.to_s << '"/>'
str << '</c:catAx>'
end
end