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

ExPoint.as « actionscript « open-flash-chart « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4a5fe40dc8d52ddc7d7c17672b6c82e76aa3a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class ExPoint
{
	public var left:Number=0;		// <-- for bars
	public var center:Number=0;		// <-- for dots
	public var y:Number=0;
	public var tooltip:String = "";
	
	public var bar_width:Number=0;
	public var bar_bottom:Number=0;
	
	public function ExPoint( left:Number, center:Number, y:Number, width:Number, bar_bottom:Number, tooltip:Number )
	{
		this.left = left;
		this.center = center;
		this.y = y;
		this.bar_width = width;
		this.bar_bottom = bar_bottom;
		this.tooltip = _root.format(tooltip);
	}
	
	public function toString()
	{
		return "left :"+ this.left;
	}
}