summaryrefslogtreecommitdiff
path: root/js/dojo-1.6/dojox/charting/themes/PlotKit
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.6/dojox/charting/themes/PlotKit')
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/README11
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/base.js64
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/base.xd.js69
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/blue.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/blue.xd.js26
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.xd.js26
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/green.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/green.xd.js26
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/orange.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/orange.xd.js26
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/purple.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/purple.xd.js26
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/red.js21
-rw-r--r--js/dojo-1.6/dojox/charting/themes/PlotKit/red.xd.js26
15 files changed, 426 insertions, 0 deletions
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/README b/js/dojo-1.6/dojox/charting/themes/PlotKit/README
new file mode 100644
index 0000000..dbf4c81
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/README
@@ -0,0 +1,11 @@
+This directory contains a set of themes for the DojoX Charting
+engine that are based on the visual stylings of the PlotKit
+chart kit, created by Alastair Tse:
+
+http://www.liquidx.net/plotkit/
+
+...whose work we admire. Consider these themes to not be a
+ripoff of his fine work, but instead a true homage: his charts
+are beautiful, and we stand in awe.
+
+--trt, 2007-06-08
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/base.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/base.js
new file mode 100644
index 0000000..f2497e7
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/base.js
@@ -0,0 +1,64 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.base"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.base");
+
+dojo.require("dojox.charting.Theme");
+
+// the baseline theme for all PlotKIt themes
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.base = new dc.Theme({
+ chart:{
+ stroke: null,
+ fill: "yellow"
+ },
+ plotarea:{
+ stroke: null,
+ fill: "yellow"
+ },
+ axis:{
+ stroke: {color:"#fff", width:1},
+ line: {color:"#fff", width:.5},
+ majorTick: {color: "#fff", width: .5, length: 6},
+ minorTick: {color: "#fff", width: .5, length: 3},
+ tick: {font: "normal normal normal 7pt Helvetica,Arial,sans-serif", fontColor: "#999"}
+ },
+ series:{
+ stroke: {width: 2.5, color:"#fff"},
+ fill: "#666",
+ font: "normal normal normal 7.5pt Helvetica,Arial,sans-serif", // label
+ fontColor: "#666"
+ },
+ marker:{ // any markers on a series.
+ stroke: {width: 2},
+ fill: "#333",
+ font: "normal normal normal 7pt Helvetica,Arial,sans-serif", // label
+ fontColor: "#666"
+ },
+ colors: ["red", "green", "blue"]
+ });
+
+ pk.base.next = function(elementType, mixin, doPost){
+ var theme = dc.Theme.prototype.next.apply(this, arguments);
+ if(elementType == "line"){
+ theme.marker.outline = {width: 2, color: "#fff"};
+ theme.series.stroke.width = 3.5;
+ theme.marker.stroke.width = 2;
+ } else if (elementType == "candlestick"){
+ theme.series.stroke.width = 1;
+ } else {
+ theme.series.stroke.color = "#fff";
+ }
+ return theme;
+ };
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/base.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/base.xd.js
new file mode 100644
index 0000000..4c82591
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/base.xd.js
@@ -0,0 +1,69 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.base"],
+["require", "dojox.charting.Theme"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.base"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.base");
+
+dojo.require("dojox.charting.Theme");
+
+// the baseline theme for all PlotKIt themes
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.base = new dc.Theme({
+ chart:{
+ stroke: null,
+ fill: "yellow"
+ },
+ plotarea:{
+ stroke: null,
+ fill: "yellow"
+ },
+ axis:{
+ stroke: {color:"#fff", width:1},
+ line: {color:"#fff", width:.5},
+ majorTick: {color: "#fff", width: .5, length: 6},
+ minorTick: {color: "#fff", width: .5, length: 3},
+ tick: {font: "normal normal normal 7pt Helvetica,Arial,sans-serif", fontColor: "#999"}
+ },
+ series:{
+ stroke: {width: 2.5, color:"#fff"},
+ fill: "#666",
+ font: "normal normal normal 7.5pt Helvetica,Arial,sans-serif", // label
+ fontColor: "#666"
+ },
+ marker:{ // any markers on a series.
+ stroke: {width: 2},
+ fill: "#333",
+ font: "normal normal normal 7pt Helvetica,Arial,sans-serif", // label
+ fontColor: "#666"
+ },
+ colors: ["red", "green", "blue"]
+ });
+
+ pk.base.next = function(elementType, mixin, doPost){
+ var theme = dc.Theme.prototype.next.apply(this, arguments);
+ if(elementType == "line"){
+ theme.marker.outline = {width: 2, color: "#fff"};
+ theme.series.stroke.width = 3.5;
+ theme.marker.stroke.width = 2;
+ } else if (elementType == "candlestick"){
+ theme.series.stroke.width = 1;
+ } else {
+ theme.series.stroke.color = "#fff";
+ }
+ return theme;
+ };
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.js
new file mode 100644
index 0000000..a2e414f
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.blue"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.blue"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.blue");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.blue = pk.base.clone();
+ pk.blue.chart.fill = pk.blue.plotarea.fill = "#e7eef6";
+ pk.blue.colors = dc.Theme.defineColors({hue: 217, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.xd.js
new file mode 100644
index 0000000..71c07ed
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/blue.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.blue"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.blue"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.blue"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.blue");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.blue = pk.base.clone();
+ pk.blue.chart.fill = pk.blue.plotarea.fill = "#e7eef6";
+ pk.blue.colors = dc.Theme.defineColors({hue: 217, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.js
new file mode 100644
index 0000000..8f6f719
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.cyan"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.cyan"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.cyan");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.cyan = pk.base.clone();
+ pk.cyan.chart.fill = pk.cyan.plotarea.fill = "#e6f1f5";
+ pk.cyan.colors = dc.Theme.defineColors({hue: 194, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.xd.js
new file mode 100644
index 0000000..45d8046
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/cyan.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.cyan"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.cyan"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.cyan"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.cyan");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.cyan = pk.base.clone();
+ pk.cyan.chart.fill = pk.cyan.plotarea.fill = "#e6f1f5";
+ pk.cyan.colors = dc.Theme.defineColors({hue: 194, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/green.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/green.js
new file mode 100644
index 0000000..6d13651
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/green.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.green"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.green"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.green");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.green = pk.base.clone();
+ pk.green.chart.fill = pk.green.plotarea.fill = "#eff5e6";
+ pk.green.colors = dc.Theme.defineColors({hue: 82, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/green.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/green.xd.js
new file mode 100644
index 0000000..ce173aa
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/green.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.green"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.green"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.green"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.green");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.green = pk.base.clone();
+ pk.green.chart.fill = pk.green.plotarea.fill = "#eff5e6";
+ pk.green.colors = dc.Theme.defineColors({hue: 82, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.js
new file mode 100644
index 0000000..c2e435d
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.orange"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.orange"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.orange");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.orange = pk.base.clone();
+ pk.orange.chart.fill = pk.orange.plotarea.fill = "#f5eee6";
+ pk.orange.colors = dc.Theme.defineColors({hue: 31, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.xd.js
new file mode 100644
index 0000000..efd195f
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/orange.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.orange"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.orange"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.orange"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.orange");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.orange = pk.base.clone();
+ pk.orange.chart.fill = pk.orange.plotarea.fill = "#f5eee6";
+ pk.orange.colors = dc.Theme.defineColors({hue: 31, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.js
new file mode 100644
index 0000000..3803328
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.purple"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.purple"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.purple");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.purple = pk.base.clone();
+ pk.purple.chart.fill = pk.purple.plotarea.fill = "#eee6f5";
+ pk.purple.colors = dc.Theme.defineColors({hue: 271, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.xd.js
new file mode 100644
index 0000000..5a214b3
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/purple.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.purple"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.purple"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.purple"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.purple");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.purple = pk.base.clone();
+ pk.purple.chart.fill = pk.purple.plotarea.fill = "#eee6f5";
+ pk.purple.colors = dc.Theme.defineColors({hue: 271, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/red.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/red.js
new file mode 100644
index 0000000..58d1297
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/red.js
@@ -0,0 +1,21 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.charting.themes.PlotKit.red"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.red"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.red");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.red = pk.base.clone();
+ pk.red.chart.fill = pk.red.plotarea.fill = "#f5e6e6";
+ pk.red.colors = dc.Theme.defineColors({hue: 1, saturation: 60, low: 40, high: 88});
+})();
+
+}
diff --git a/js/dojo-1.6/dojox/charting/themes/PlotKit/red.xd.js b/js/dojo-1.6/dojox/charting/themes/PlotKit/red.xd.js
new file mode 100644
index 0000000..b8636f6
--- /dev/null
+++ b/js/dojo-1.6/dojox/charting/themes/PlotKit/red.xd.js
@@ -0,0 +1,26 @@
+/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+dojo._xdResourceLoaded(function(dojo, dijit, dojox){
+return {depends: [["provide", "dojox.charting.themes.PlotKit.red"],
+["require", "dojox.charting.themes.PlotKit.base"]],
+defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.charting.themes.PlotKit.red"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.charting.themes.PlotKit.red"] = true;
+dojo.provide("dojox.charting.themes.PlotKit.red");
+dojo.require("dojox.charting.themes.PlotKit.base");
+
+(function(){
+ var dc = dojox.charting, pk = dc.themes.PlotKit;
+
+ pk.red = pk.base.clone();
+ pk.red.chart.fill = pk.red.plotarea.fill = "#f5e6e6";
+ pk.red.colors = dc.Theme.defineColors({hue: 1, saturation: 60, low: 40, high: 88});
+})();
+
+}
+
+}};});