<html>
<head>
<style>
/*Supplemental: CSS for the YUI distribution*/
#custom-doc { width: 95%; min-width: 950px; }
#mychart {
padding:10px 10px 10px 10px;
}
</style>
</head>
<body class="yui3-skin-sam">
<h3>Aria Spline Tests</h3>
<div id="mychart"></div>
<script>
YUI({
allowRollup: false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
}).use('charts', 'test', 'console', function (Y)
{
var suite = new Y.Test.Suite("Y.Charts.AriaSpline"),
myDataValues = [
],
pieDataValues = [
],
defaultAriaDescription = "Use the up and down keys to navigate between series. Use the left and right keys to navigate through items in a series.",
defaultPieAriaDescription = "Use the left and right keys to navigate through items.",
seriesKeys = ["values", "revenue"],
width = 400,
height = 300;
function AriaTests(cfg, testConfig)
{
this.attrConfig = cfg;
this.name = testConfig.type + " Aria Tests";
}
Y.extend(AriaTests, Y.Test.Case, {
defaultAriaLabel: "Chart Application",
changedAriaLabel: "This is a new ariaLabel value.",
setUp: function() {
var mychart = new Y.Chart(this.attrConfig);
this.chart = mychart;
},
tearDown: function() {
},
"test:getAriaLabel()": function()
{
},
"test:setAriaLabel()": function()
{
var chart = this.chart;
chart.set("ariaLabel", this.changedAriaLabel);
},
"test:getAriaDescription()": function()
{
},
"test:setAriaDescription()": function()
{
var chart = this.chart;
chart.set("ariaDescription", this.changedAriaLabel);
}
});
Y.AriaTests = AriaTests;
var splineTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "spline",
width: width,
height: height
}, {
type: "Spline",
defaultAriaDescription: defaultAriaDescription
}),
stackedSplineTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "spline",
stacked: true,
width: width,
height: height
}, {
type: "StackedSpline",
defaultAriaDescription: defaultAriaDescription
}),
comboSplineTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "combospline",
width: width,
height: height
}, {
type: "ComboSpline",
defaultAriaDescription: defaultAriaDescription
}),
stackedComboSplineTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "combospline",
stacked: true,
width: width,
height: height
}, {
type: "StackedComboSpline",
defaultAriaDescription: defaultAriaDescription
});
suite.add(splineTests);
suite.add(stackedSplineTests);
suite.add(comboSplineTests);
suite.add(stackedComboSplineTests);
//create the console
var r = new Y.Console({
newestOnTop : false,
style: 'block' // to anchor in the example content
});
r.render('#testLogger');
//run the tests
Y.Test.Runner.add(suite);
});
</script>
</body>
</html>