Commit fc814a8d authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

delete unused files

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51745 954022d7-b5bf-4e40-9824-e11837661b57
parent a11dd2d2
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>An example of an OfficeExcel Bi-polar chart</title>
<meta name="keywords" content="html5 canvas example bipolar charts" />
<meta name="description" content="An example of the type of Bi-polar chart that OfficeExcel can produce" />
<meta name="googlebot" content="NOODP">
<meta property="og:title" content="OfficeExcel: HTML5 Javascript charts library" />
<meta property="og:description" content="A charts library based on the HTML5 canvas tag" />
<link rel="stylesheet" href="../css/website.css" type="text/css" media="screen" />
<link rel="icon" type="image/png" href="../images/favicon.png">
<!-- Place this tag in your head or just before your close body tag -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script src="../libraries/OfficeExcel.common.core.js"></script>
<script src="../libraries/OfficeExcel.common.tooltips.js"></script>
<script src="../libraries/OfficeExcel.chartProperties.js" ></script>
<script src="../libraries/OfficeExcel.bipolar.js"></script>
<!--[if lt IE 9]><script src="../excanvas/excanvas.original.js"></script><![endif]-->
<script>
window.onload = function ()
{
var left = [5,6,8,9,12,13,4,9];
var right = [5,8,4,11,15,26,13,16];
var bipolar1 = new OfficeExcel.Bipolar('bipolar1', left, right);
bipolar1._otherProps._colors = ['red'];
bipolar1._otherProps._labels = ['Barry', 'John', 'Fred', 'George', 'Rich', 'Larry', 'John', 'Mike'];
bipolar1._otherProps._title_left = '2007';
bipolar1._otherProps._title_right = '2008';
bipolar1._chartTitle._text = 'Sales comparison';
if (!OfficeExcel.isIE8()) {
bipolar1._tooltip._tooltips = [function () {return 'Barry';}, 'id:john', 'Fred', 'George', 'Rich', 'Larry', 'John', 'Mike', 'Barry', 'John', 'Fred', 'George', 'Rich', 'Larry', 'John', 'Mike'];
bipolar1._tooltip._effect = 'fade';
}
bipolar1._otherProps._units_post = 'k';
bipolar1._otherProps._xmax = 35;
bipolar1._shadow._visible = true;
bipolar1._shadow._offsety = 0;
bipolar1._shadow._offsetx = 0;
bipolar1._shadow._color = '#aaa';
bipolar1._shadow._blur = 25;
bipolar1.Draw();
}
</script>
<?php PrintAnalyticsCode() ?>
</head>
<body>
<div id="breadcrumb">
<a href="../index.html">OfficeExcel: HTML5 Javascript charts library</a>
>
<a href="./index.html">Examples</a>
>
Bi-polar charts example
</div>
<h1>Bi-polar <span>charts</span></h1>
<script>
if (OfficeExcel.isOld()) {
document.write('<div style="background-color: #fee; border: 2px dashed red; padding: 5px"><b>Important</b><br /><br /> Internet Explorer does not natively support the HTML5 canvas tag, so if you want to see the charts, you can either:<ul><li>Install <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a></li><li>Use ExCanvas. This is provided in the OfficeExcel Archive.</li><li>Use another browser entirely. Your choices are Firefox 3.5+, Chrome 2+, Safari 4+ or Opera 10.5+. </li></ul> <b>Note:</b> Internet Explorer 9 fully supports the canvas tag.</div>');
}
</script>
<div>
<div>
<p>
The Bi-polar chart is also known as an age-frequency chart or a population pyramid. It allows you to very
straight forwardly compare two sets of data. For example two years worth of sales figues. By using this type
of chart abnormalities will become apparent. Other charts that would also be comparable, include a grouped
bar chart, a stacked bar chart, and a multiple line chart.
</p>
<ul>
<li><a href="../docs/bipolar.html">Bi-polar chart API documentation</a></li>
</ul>
</div>
<div style="text-align: center">
<canvas id="bipolar1" width="600" height="250">[No canvas support]</canvas>
</div>
</div>
<div id="john" style="display: none">John</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment