150 lines
No EOL
3.9 KiB
HTML
150 lines
No EOL
3.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Chart with Legend Example</title>
|
|
|
|
<style type="text/css">
|
|
/*margin and padding on body element
|
|
can introduce errors in determining
|
|
element position and are not recommended;
|
|
we turn them off as a foundation for YUI
|
|
CSS treatments. */
|
|
body {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
|
|
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
|
<script type="text/javascript" src="../../build/json/json.js"></script>
|
|
<script type="text/javascript" src="../../build/element/element-beta.js"></script>
|
|
<script type="text/javascript" src="../../build/datasource/datasource-beta.js"></script>
|
|
<script type="text/javascript" src="../../build/charts/charts-experimental.js"></script>
|
|
|
|
|
|
<!--begin custom header content for this example-->
|
|
<style type="text/css">
|
|
#chart
|
|
{
|
|
float: left;
|
|
width: 400px;
|
|
height: 300px;
|
|
}
|
|
|
|
.chart_title
|
|
{
|
|
display: block;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
margin-bottom: 0.4em;
|
|
}
|
|
|
|
#legend
|
|
{
|
|
float: left;
|
|
list-style: none;
|
|
padding: 5px;
|
|
margin-left: 10px;
|
|
margin-top: 90px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
#legend li
|
|
{
|
|
height: 1.2em;
|
|
padding-left: 15px;
|
|
margin-bottom: 4px;
|
|
list-style: none;
|
|
}
|
|
|
|
.categoryName
|
|
{
|
|
display: block;
|
|
padding-left: 4px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.summer
|
|
{
|
|
background-color: #00b8bf;
|
|
}
|
|
.fall
|
|
{
|
|
background-color: #8dd5e7;
|
|
}
|
|
.spring
|
|
{
|
|
background-color: #c0fff6;
|
|
}
|
|
.winter
|
|
{
|
|
background-color: #ffa928;
|
|
}
|
|
.undecided
|
|
{
|
|
background-color: #edff9f;
|
|
}
|
|
</style>
|
|
<!--end custom header content for this example-->
|
|
|
|
</head>
|
|
|
|
<body class=" yui-skin-sam">
|
|
|
|
<h1>Chart with Legend Example</h1>
|
|
|
|
<div class="exampleIntro">
|
|
<p>Though the <a href="http://developer.yahoo.com/yui/charts/">YUI Charts Control</a> doesn't support legends out of the box, you can easily create a legend using a simple unordered list. This example shows you how.</p>
|
|
<p>Please note: The YUI Charts Control requires Flash Player 9.0.45 or higher. The latest version of Flash Player is available at the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p>
|
|
</div>
|
|
|
|
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
<span class="chart_title">Survey: What is your favorite season?</span>
|
|
<div id="chart">Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can install the latest version at the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p></div>
|
|
|
|
<ul id="legend">
|
|
<li class="summer"><span class="categoryName">Summer</span></li>
|
|
<li class="fall"><span class="categoryName">Fall</span></li>
|
|
<li class="spring"><span class="categoryName">Spring</span></li>
|
|
<li class="winter"><span class="categoryName">Winter</span></li>
|
|
<li class="undecided"><span class="categoryName">Undecided</span></li>
|
|
</ul>
|
|
|
|
<script type="text/javascript">
|
|
|
|
YAHOO.widget.Chart.SWFURL = "../../build/charts/assets/charts.swf";
|
|
|
|
//--- data
|
|
|
|
YAHOO.example.publicOpinion =
|
|
[
|
|
{ response: "Summer", count: 564815 },
|
|
{ response: "Fall", count: 664182 },
|
|
{ response: "Spring", count: 248124 },
|
|
{ response: "Winter", count: 271214 },
|
|
{ response: "Undecided", count: 81845 }
|
|
]
|
|
|
|
var opinionData = new YAHOO.util.DataSource( YAHOO.example.publicOpinion );
|
|
opinionData.responseType = YAHOO.util.DataSource.TYPE_JSARRAY;
|
|
opinionData.responseSchema = { fields: [ "response", "count" ] };
|
|
|
|
//--- chart
|
|
|
|
var mychart = new YAHOO.widget.PieChart( "chart", opinionData,
|
|
{
|
|
dataField: "count",
|
|
categoryField: "response",
|
|
series: [{}],
|
|
expressInstall: "assets/expressinstall.swf"
|
|
});
|
|
|
|
|
|
</script>
|
|
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
</body>
|
|
</html> |