egroupware/phpgwapi/js/jquery/jqplot/examples/theming.html
2011-08-09 23:10:50 +00:00

481 lines
16 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Theming Test</title>
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="../excanvas.js"></script><![endif]-->
<!-- <link rel="stylesheet" type="text/css" href="../themes/jqplot.brass.css" /> -->
<link rel="stylesheet" type="text/css" href="../jquery.jqplot.css" />
<link rel="stylesheet" type="text/css" href="examples.css" />
<!-- BEGIN: load jquery -->
<script language="javascript" type="text/javascript" src="../jquery.js"></script>
<!-- END: load jquery -->
<!-- BEGIN: load jqplot -->
<script language="javascript" type="text/javascript" src="../jquery.jqplot.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.barRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.categoryAxisRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.pieRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.donutRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.highlighter.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.cursor.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.funnelRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.canvasTextRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.canvasAxisTickRenderer.js"></script>
<script language="javascript" type="text/javascript" src="../plugins/jqplot.canvasAxisLabelRenderer.js"></script>
<!-- END: load jqplot -->
<style type="text/css">
.jqplot-target {
margin: 30px;
}
</style>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
l1 = [['Seoul', 1], ['Paris', 7], ['Singapore',3], ['Hong Kong',5], ['Chicago', 2], ['New York', 9]];
l2 = [11, 9, 5, 12, 14];
l3 = [4, 8, 5, 3, 6];
l4 = [12, 6, 13, 11, 2];
l5 = [4, -3, 3, 6, 2, -2];
pop1980 = [7071639, 2968528, 3005072, 1595138, 789704, 1688210, 785940, 904599];
pop1990 = [7322564, 3485398, 2783726, 1630553, 983403, 1585577, 935933, 1006877];
pop2000 = [8008654, 3694644, 2896051, 1974152, 1322025, 1517550, 1160005, 1188603];
pop2008 = [8363710, 3833995, 2853114, 2242193, 1567924, 1447395, 1351305, 1279910];
ticks = ["New York", "Los Angeles", "Chicago", "Houston", "Phoenix", "Philadelphia", "San Antonio", "Dallas"];
plot1 = $.jqplot('chart1',[l2],{
title: 'Line Chart',
highlighter: {
show:true
},
cursor: {
show: true,
zoom: true
},
axes: {
xaxis: {
label: 'Sample'
}
}
});
plot1b = $.jqplot('chart1b',[l2, l3, l4],{
stackSeries: true,
showMarker: false,
seriesDefaults: {
fill: true
}
});
plot2 = $.jqplot('chart2',[pop1980, pop1990, pop2000, pop2008],{
title: 'City Population',
legend: {
show: true
},
seriesDefaults: {
renderer: $.jqplot.BarRenderer,
rendererOptions: {
barPadding: 2
}
},
series: [
{label: '1980'},
{label: '1990'},
{label: '2000'},
{label: '2008 (est)'}
],
axes: {
xaxis: {
label: 'City',
renderer: $.jqplot.CategoryAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer,
labelRenderer: $.jqplot.CanvasAxisLabelRenderer,
ticks: ticks,
tickOptions: {
angle: -30
}
},
yaxis: {
tickRenderer: $.jqplot.CanvasAxisTickRenderer,
max: 9000000,
min: 0,
tickOptions: {
formatString: '%d',
angle: -30
}
}
}
});
plot3 = $.jqplot('chart3',[l1],{
title: 'Global City Index',
legend: {
show: true,
rendererOptions: {
// numberColumns: 2,
fontSize: '10pt'
}
},
seriesDefaults: {
renderer: $.jqplot.FunnelRenderer
}
});
plot5 = $.jqplot('chart5',[l1],{
title: 'Pie Chart',
seriesDefaults: {
renderer: $.jqplot.PieRenderer
},
legend: {
show: true
}
});
e1 = plot1.themeEngine;
brass = e1.copy('Default', 'brass');
brass.title.fontFamily = 'Copperplate, Impact';
brass.grid.backgroundColor = "rgb(216, 198, 114)";
brass.grid.drawGridlines = false;
brass.series[0].lineWidth = 6.5;
brass.series[0].markerOptions.show = false;
// brass.axes.xaxis.ticks.fontFamily = "Copperplate, Impact";
brass.axesStyles.label.fontFamily = "Copperplate, 'Copperplate Gothic Light', Impact";
brass.axesStyles.ticks.fontFamily = "Copperplate, 'Copperplate Gothic Light', Impact";
brass.axesStyles.label.fontSize = '14pt';
temp = {
grid: {
backgroundColor: "#593D2B",
gridLineColor: '#E8E8E8',
gridLineWidth: 3
},
title: {
fontFamily: '"Comic Sans MS", cursive',
fontSize: '18pt',
textColor: '#C7CC4E'
},
seriesStyles: {
color: "#DBBCAF",
lineWidth: 8,
markerOptions: {
show: false
}
},
axes: {
xaxis: {
label: {
fontFamily: '"Comic Sans MS", cursive',
textColor: '#C7CC4E'
}
}
}
};
chocolate = plot1.themeEngine.copy('Default', 'chocolate', temp);
gabe = {
series: [
{color: 'rgba(216, 159, 60, 0.6)'},
{color: 'rgba(159, 216, 60, 0.6)'},
{color: 'rgba(60, 159, 216, 0.6)'},
],
grid: {
backgroundColor: '#DEA493'
}
}
gabe = plot1b.themeEngine.newTheme('gabe', gabe);
oldstyle = {
title: {
fontFamily: 'Times New Roman',
textColor: 'black'
},
axesStyles: {
borderWidth: 0,
ticks: {
fontSize: '12pt',
fontFamily: 'Times New Roman',
textColor: 'black'
},
label: {
fontFamily: 'Times New Roman',
textColor: 'black'
}
},
grid: {
backgroundColor: 'white',
borderWidth: 0,
gridLineColor: 'black',
gridLineWidth: 2,
borderColor: 'black'
},
series: [
{color: 'red', highlightColors: ['aqua', 'black', 'blue', 'fuchsia', 'gray', 'green', 'lime', 'maroon', 'navy', 'olive', 'purple', 'red', 'silver', 'teal', 'white', 'yellow']},
{color: 'green', highlightColors: []},
{color: 'blue', highlightColors: []},
{color: 'yellow', highlightColors: 'rgb(255, 245, 185)'}
],
legend: {
background: 'white',
textColor: 'black',
fontFamily: 'Times New Roman',
border: '1px solid black'
}
};
plot2.themeEngine.newTheme('oldstyle', oldstyle);
temp = {
seriesStyles: {
seriesColors: ['red', 'orange', 'yellow', 'green', 'blue', 'indigo'],
highlightColors: ['lightpink', 'lightsalmon', 'lightyellow', 'lightgreen', 'lightblue', 'mediumslateblue']
},
legend: {
fontSize: '8pt'
},
title: {
fontSize: '18pt'
},
grid: {
backgroundColor: 'rgb(211, 233, 195)'
}
};
plot3.themeEngine.newTheme('uma', temp);
plot5.themeEngine.newTheme('uma', temp);
});
function switch1() {
var th = $('#p1switcher').val();
plot1.activateTheme(th);
}
function switch1b() {
var th = $('#p1bswitcher').val();
plot1b.activateTheme(th);
}
function switch2() {
var th = $('#p2switcher').val();
plot2.activateTheme(th);
}
function switch3() {
var th = $('#p3switcher').val();
plot3.activateTheme(th);
}
function switch5() {
var th = $('#p5switcher').val();
plot5.activateTheme(th);
}
function switch35() {
var th = $('#p35switcher').val();
plot3.activateTheme(th);
plot5.activateTheme(th);
}
</script>
</head>
<body>
<?php include "nav.inc"; ?>
<p>jqPlot has basic theming support for commonly styled atributes of plot elements. Upon creation, each plot will have a "themeEngine" that controls modificaition, adding, removing and activating of plot themes. In addition, each plot will have a "Default" theme which corresponds to the styling of the plot at plot creation.<p>
<p>Creation of new themes is easy. A "style" object is created with properties for the various plot elements to be styles. Attached to each of those is an ojbect with the actual styling properties. A simple style object might look like:</p>
<pre>
gabe = {
series: [
{color: 'rgba(216, 159, 60, 0.4)'},
{color: 'rgba(159, 216, 60, 0.4)'},
{color: 'rgba(60, 159, 216, 0.4)'},
],
grid: {
backgroundColor: '#DEA493'
}
}
</pre>
<p>This new style would then be added to the plot's themeEngine as a new theme. it can then be activated by calling the plot's <code>activateTheme</code> method.</p>
<pre>
plot1b.themeEngine.newTheme('gabe', gabe);
plot1b.activateTheme('gabe');
</pre>
<div id="chart1b" class="plot" style="width:400px;height:260px;"></div>
<p>Select Theme for area plot:
<select id="p1bswitcher" onchange="switch1b();">
<option value="Default" selected>Default</option>
<option value="gabe">gabe</option>
</select>
</p>
<p>Themes can be reused between plots. Here a style object is created and assigned to two different plots. For convenience, the theme is given the same name when added to each plot's themeEngine. Since each plot keeps it's own copy of the theme, the names do not need to be the same. Also note that themes are added as deep copies by value and not by reference. This avoids strange behavior due to the cascading nature of css related styles.</p>
<pre>
temp = {
seriesStyles: {
seriesColors: ['red', 'orange', 'yellow', 'green', 'blue', 'indigo'],
highlightColors: ['lightpink', 'lightsalmon', 'lightyellow', 'lightgreen', 'lightblue', 'mediumslateblue']
},
legend: {
fontSize: '8pt'
},
title: {
fontSize: '18pt'
},
grid: {
backgroundColor: 'rgb(211, 233, 195)'
}
};
plot3.themeEngine.newTheme('uma', temp);
plot5.themeEngine.newTheme('uma', temp);
</pre>
<p>Select Theme for funnel and pie charts at same time:
<select id="p35switcher" onchange="switch35();">
<option value="Default" selected>Default</option>
<option value="uma">uma</option>
</select>
</p>
<div id="chart3" class="plot" style="width:400px;height:320px;"></div>
<p>Select Theme for funnel plot:
<select id="p3switcher" onchange="switch3();">
<option value="Default" selected>Default</option>
<option value="uma">uma</option>
</select>
</p>
<div id="chart5" class="plot" style="width:400px;height:260px;"></div>
<p>Select Theme for pie chart:
<select id="p5switcher" onchange="switch5();">
<option value="Default" selected>Default</option>
<option value="uma">uma</option>
</select>
</p>
<p>There are various was to create and edit themes for a plot. Below are two different methods for creating additional themes for a line plot and adding them to the plots themeEngine. Here the <code>axesStyles</code> property is used to supply styling to all axes at one time. A similar property, <code>seriesStyles</code>, exists for styling all series of a plot at one time. Note, neither of these methods is as straightforward as using the <code>newTheme()</code> method of the plots themeEngine, but are included for illustrative purposes.</p>
<pre>
e1 = plot1.themeEngine;
brass = e1.copy('Default', 'brass');
brass.title.fontFamily = 'Copperplate, Impact';
brass.grid.backgroundColor = "rgb(216, 198, 114)";
brass.grid.drawGridlines = false;
brass.series[0].lineWidth = 6.5;
brass.series[0].markerOptions.show = false;
brass.axesStyles.label.fontFamily = "Copperplate, 'Copperplate Gothic Light', Impact";
brass.axesStyles.ticks.fontFamily = "Copperplate, 'Copperplate Gothic Light', Impact";
brass.axesStyles.label.fontSize = '14pt';
temp = {
grid: {
backgroundColor: "#593D2B",
gridLineColor: '#E8E8E8',
gridLineWidth: 3
},
title: {
fontFamily: '"Comic Sans MS", cursive',
fontSize: '18pt',
textColor: '#C7CC4E'
},
seriesStyles: {
color: "#DBBCAF",
lineWidth: 8,
markerOptions: {
show: false
}
},
axes: {
xaxis: {
label: {
fontFamily: '"Comic Sans MS", cursive',
textColor: '#C7CC4E'
}
}
}
};
chocolate = plot1.themeEngine.copy('Default', 'chocolate', temp);
</pre>
<div id="chart1" class="plot" style="width:400px;height:260px;"></div>
<p>Select theme for line chart:
<select id="p1switcher" onchange="switch1();">
<option value="Default" selected>Default</option>
<option value="brass">brass</option>
<option value="chocolate">chocolate</option>
</select>
</p>
<p>The example below shows more extensive use of the various styling options to give the chart a rather ugly and dated appearence. Note that, for bar (and funnel, pie and donut charts), <code>highlightColors</code> can be specified as an array of colors which will be applied to each bar individually, as a single string giving a color to apply to all bars, or as an empty array which will force jqPlot to auto calculate highlight colors based on the current bar color.<p>
<pre>
oldstyle = {
title: {
fontFamily: 'Times New Roman',
textColor: 'black'
},
axesStyles: {
borderWidth: 0,
ticks: {
fontSize: '12pt',
fontFamily: 'Times New Roman',
textColor: 'black'
},
label: {
fontFamily: 'Times New Roman',
textColor: 'black'
}
},
grid: {
backgroundColor: 'white',
borderWidth: 0,
gridLineColor: 'black',
gridLineWidth: 2,
borderColor: 'black'
},
series: [
{color: 'red', highlightColors: ['aqua', 'black', 'blue', 'fuchsia', 'gray', 'green', 'lime', 'maroon', 'navy', 'olive', 'purple', 'red', 'silver', 'teal', 'white', 'yellow']},
{color: 'green', highlightColors: []},
{color: 'blue', highlightColors: []},
{color: 'yellow', highlightColors: 'rgb(255, 245, 185)'}
],
legend: {
background: 'white',
textColor: 'black',
fontFamily: 'Times New Roman',
border: '1px solid black'
}
};
plot2.themeEngine.newTheme('oldstyle', oldstyle);
</pre>
<div id="chart2" class="plot" style="width:760px;height:360px;"></div>
<p>Select theme for bar chart:
<select id="p2switcher" onchange="switch2();">
<option value="Default" selected>Default</option>
<option value="oldstyle">oldstyle</option>
</select>
</p>
</body>
</html>