Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/open-flash-chart/actionscript/XLabelStyle.as')
-rw-r--r--libs/open-flash-chart/actionscript/XLabelStyle.as31
1 files changed, 31 insertions, 0 deletions
diff --git a/libs/open-flash-chart/actionscript/XLabelStyle.as b/libs/open-flash-chart/actionscript/XLabelStyle.as
new file mode 100644
index 0000000000..b2338ddc10
--- /dev/null
+++ b/libs/open-flash-chart/actionscript/XLabelStyle.as
@@ -0,0 +1,31 @@
+class XLabelStyle
+{
+ public var size:Number = 10;
+ public var colour:Number = 0x000000;
+ public var vertical:Boolean = false;
+ public var diag:Boolean = false;
+ public var step:Number = 1;
+
+ public function XLabelStyle( lv:LoadVars )
+ {
+ if( lv.x_label_style == undefined )
+ return;
+
+ var tmp:Array = lv.x_label_style.split(',');
+ if( tmp.length > 0 )
+ this.size = tmp[0];
+
+ if( tmp.length > 1 )
+ this.colour = _root.get_colour(tmp[1]);
+
+ if( tmp.length > 2 )
+ {
+ this.vertical = (Number(tmp[2])==1);
+ this.diag = (Number(tmp[2])==2);
+ }
+
+ if( tmp.length > 3 )
+ if( Number(tmp[3]) > 0 )
+ this.step = Number(tmp[3]);
+ }
+} \ No newline at end of file