footer

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.

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.

Type: Object

Default: {fill: "#000", stroke: "none"}

visible

A value that indicates the footer visibility.

Type: Boolean

Default: false

Code Example:

var scatterchart = document.getElementById("wijscatterchartDefault").winControl;

          WinJS.UI.setOptions(scatterchart, {

                     footer: {

                           text:"footer",

                           style:{

                           fill:"#f1f1f1",

                           stroke:"#010101"

                     }}

});


Send us comments about this topic.
Copyright © GrapeCity, inc. All rights reserved.