charts-timeaxis-source.mustache revision 2431f6aca1be7f7a136c5df34022e3f902490075
<html>
<head>
</head>
<body>
<div id="mychart"></div>
<script type="text/javascript">
(function() {
YUI().use('charts', function (Y)
{
var myDataValues = [
];
var mychart = new Y.Chart({
dataProvider:myDataValues,
render:"#mychart",
styles: {
axes: {
date: {
label: {
rotation: -45
}
}
}
},
categoryKey:"date",
categoryType:"time"
});
});
})();
</script>
</body>
</head>