Wijmo UI for the Web
header Option
wijmo.chart.wijchartcore Namespace > options type : header Option

Sets up the object to use as the header of the barchart.

Type: wijmo.chart.chart_title object

Default:

{
    visible: true, 
    style: {fill: "none", stroke: "none"}, 
    textStyle: {"font-size": 18, fill: "#666", stroke: "none"}, 
    compass: "north", 
    orientation: "horizontal"
}
Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.chart.chart_title
    returnsValue = $(".selector").wijchartcore("option", "header");
    
    // Set value
    var newValue; // Type:  wijmo.chart.chart_title
    $(".selector").wijchartcore("option", "header", newValue);
        
});
var header : chart_title;
Example

This code creates a chart with a header that looks like the one in the following image.

<script type="text/javascript">
$(document).ready(function () {
    $("#wijbubblechart").wijbubblechart({
        axis: {
            //sets the title text for the Y axis
            y: {text: "Number of Products"},
            //sets  the title text for the X axis and formats 
            //the X axis labels as currency with no decimal spaces
            x: {text: "Sales", annoFormatString: "C0"}
        },
        header: {
            //sets the background color of the header to pale grey
            style: {fill: "gainsboro"},
            //sets the text to display in the header
            text: "Market Share by Company",
            //sets the header text style
            textStyle: {"font-size": 24, fill: "blueviolet"}
        },
        //hides the legend
        legend: {visible: false},
        //adds three data series to the chart
        seriesList: [
        {
            //sets the text to use in the tooltip for the bubble
            label: "Company A Market Share",
            //sets the Y value (number of products),
            //the X value (sales), and the Y1 (market share)
            data: { y: [14], x: [12200], y1: [.15] }
        }, {
            label: "Company B Market Share",
            data: { y: [20], x: [60000], y1: [.23] }
        }, {
            label: "Company C Market Share",
            data: { y: [18], x: [24400], y1: [.1] }
        }]
    });
});
</script>
See Also

Reference

options type
wijchartcore jQuery Widget