1package com.yahoo.yui.charts
2{
3
4	public class BackgroundImageMode
5	{
6		public static const STRETCH:String = "stretch";
7		public static const STRETCH_AND_MAINTAIN_ASPECT_RATIO:String = "stretchMaintainAspectRatio";
8		public static const REPEAT:String = "repeat";
9		public static const REPEAT_X:String = "repeat-y";
10		public static const REPEAT_Y:String = "repeat-x";
11		public static const NO_REPEAT:String = "no-repeat";
12	}
13
14}
15