Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
if(!dojo._hasResource["dojox.charting.themes.PlotKit.purple"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.charting.themes.PlotKit.purple"] = true;
3
dojo.provide("dojox.charting.themes.PlotKit.purple");
4
dojo.require("dojox.charting.Theme");
5
 
6
(function(){
7
	var dxc=dojox.charting;
8
	dxc.themes.PlotKit.purple=new dxc.Theme({
9
		chart:{
10
			stroke:null,
11
			fill: "white"
12
		},
13
		plotarea:{
14
			stroke:null,
15
			fill: "#eee6f5"
16
		},
17
		axis:{
18
			stroke:{ color:"#fff",width:2 },
19
			line:{ color:"#fff",width:1 },
20
			majorTick:{ color:"#fff", width:2, length:12 },
21
			minorTick:{ color:"#fff", width:1, length:8 },
22
			font:"normal normal normal 8pt Tahoma",
23
			fontColor:"#999"
24
		},
25
		series:{
26
			outline:{ width:1, color:"#fff" },
27
			stroke:{ width:2, color:"#666" },
28
			fill:new dojo.Color([0x66, 0x66, 0x66, 0.8]),
29
			font:"normal normal normal 7pt Tahoma",	//	label
30
			fontColor:"#000"
31
		},
32
		marker:{	//	any markers on a series.
33
			stroke:{ width:2 },
34
			fill:"#333",
35
			font:"normal normal normal 7pt Tahoma",	//	label
36
			fontColor:"#000"
37
		},
38
		colors:[]
39
	});
40
	dxc.themes.PlotKit.purple.defineColors({ hue:271, saturation:60, low:40, high:88 });
41
})();
42
 
43
}