root / trunk / web / dojo / dojox / charting / themes / Chris.js @ 12
History | View | Annotate | Download (1.98 KB)
1 | 9 | andrej.cim | /*
|
---|---|---|---|
2 | Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
||
3 | Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||
4 | see: http://dojotoolkit.org/license for details
|
||
5 | */
|
||
6 | |||
7 | |||
8 | if(!dojo._hasResource["dojox.charting.themes.Chris"]){ |
||
9 | dojo._hasResource["dojox.charting.themes.Chris"]=true; |
||
10 | dojo.provide("dojox.charting.themes.Chris");
|
||
11 | dojo.require("dojox.gfx.gradutils");
|
||
12 | dojo.require("dojox.charting.Theme");
|
||
13 | (function(){
|
||
14 | var dc=dojox.charting,_1=dc.themes,_2=dc.Theme,g=_2.generateGradient,_3={type:"linear",space:"shape",x1:0,y1:0,x2:0,y2:100}; |
||
15 | _1.Chris=new dc.Theme({chart:{fill:"#c1c1c1",stroke:{color:"#666"}},plotarea:{fill:"#c1c1c1"},series:{stroke:{width:2,color:"white"},outline:null,fontColor:"#333"},marker:{stroke:{width:2,color:"white"},outline:{width:2,color:"white"},fontColor:"#333"},seriesThemes:[{fill:g(_3,"#01b717","#238c01")},{fill:g(_3,"#d04918","#7c0344")},{fill:g(_3,"#0005ec","#002578")},{fill:g(_3,"#f9e500","#786f00")},{fill:g(_3,"#e27d00","#773e00")},{fill:g(_3,"#00b5b0","#005f5d")},{fill:g(_3,"#ac00cb","#590060")}],markerThemes:[{fill:"#01b717",stroke:{color:"#238c01"}},{fill:"#d04918",stroke:{color:"#7c0344"}},{fill:"#0005ec",stroke:{color:"#002578"}},{fill:"#f9e500",stroke:{color:"#786f00"}},{fill:"#e27d00",stroke:{color:"#773e00"}},{fill:"#00b5b0",stroke:{color:"#005f5d"}},{fill:"#ac00cb",stroke:{color:"#590060"}}]}); |
||
16 | _1.Chris.next=function(_4,_5,_6){ |
||
17 | var _7=_4=="line"; |
||
18 | if(_7||_4=="area"){ |
||
19 | var s=this.seriesThemes[this._current%this.seriesThemes.length]; |
||
20 | s.fill.space="plot";
|
||
21 | if(_7){
|
||
22 | s.stroke={color:s.fill.colors[1].color}; |
||
23 | s.outline={width:2,color:"white"}; |
||
24 | } |
||
25 | var _8=_2.prototype.next.apply(this,arguments); |
||
26 | delete s.outline;
|
||
27 | delete s.stroke;
|
||
28 | s.fill.space="shape";
|
||
29 | return _8;
|
||
30 | } |
||
31 | return _2.prototype.next.apply(this,arguments); |
||
32 | }; |
||
33 | _1.Chris.post=function(_9,_a){ |
||
34 | _9=_2.prototype.post.apply(this,arguments); |
||
35 | if((_a=="slice"||_a=="circle")&&_9.series.fill&&_9.series.fill.type=="radial"){ |
||
36 | _9.series.fill=dojox.gfx.gradutils.reverse(_9.series.fill); |
||
37 | } |
||
38 | return _9;
|
||
39 | }; |
||
40 | })(); |
||
41 | } |