An object value that indicates the footer of the chart element.
Type: Object
Default: footer:{
visible:false,
style:{
fill:"#fff",
stroke:"none"
},
textStyle:{
fill:"#000",
stroke:"none"
},
compass:"south",
orientation:"horizontal"
}
compass
A value that indicates the compass position of the footer.
Type: String
Default: "south"
Note: The available options are 'north', 'south', 'east', and 'west'.
orientation
A value that indicates the orientation of the footer.
Type: String
Default: "horizontal"
style
A value that indicates the style that will be applied to the chart footer. For a full list of the available Style options, please see the Style Options topic.
Type: Object
Default: {fill:"#fff", stroke:"none"}
text
A value that indicates the footer text.
Type: String
Default: ""
textStyle
A value that indicates the styles that will be applied to the footer text. For a full list of the available Style options, please see the Style Options topic.
Type: Object
Default: {fill: "#000", stroke: "none"}
visible
A value that indicates the footer visibility.
Type: Boolean
Default: false
Code Example:
var linechart = document.getElementById("wijlinechartDefault").winControl;
WinJS.UI.setOptions(linechart, {
footer: {
text:"footer",
style:{
fill:"#f1f1f1",
stroke:"#010101"
}}
});