[4.2b] Chart Axis length and width doesn't work
REQUIRED INFORMATION
Ext version tested: Browser versions tested against: DOCTYPE tested against: Description: - The length and width settings of the Chart Axis appears to be not working.
Steps to reproduce the problem: The result that was expected: - Any effect of the length and width settings
The result that occurs instead: - I can't see any difference with those settings and without
- Actually, I am trying to shift "Monday" to the right. Not 100% sure what exactly I should use - length or width.
Test Case:
Code:
<!DOCTYPE html>
<html>
<head>
<title>Chart axis length and width</title>
<link rel="stylesheet" href="../resources/css/ext-all.css" />
<script src="../ext-all-debug.js"></script>
<script>
Ext.onReady(function () {
Ext.create(Ext.chart.Chart, {
renderTo: Ext.getBody(),
height: 400,
width: 400,
axes: [{
type: "Category",
position: "bottom",
title: "Day",
fields: ["day"],
length: 100,
width: 100
}, {
type: "Numeric",
position: "left",
title: "Y",
fields: ["y"]
}],
series: [{
type: "line",
title: "Chart",
xField: "day",
yField: "y"
}],
store: {
fields: [{
name: "day"
}, {
name: "y"
}],
data: [{
day: "Monday",
y: 0
}, {
day: "Tuesday",
y: 50
}]
}
});
});
</script>
</head>
<body>
</body>
</html>