Wijmo UI for the Web
y Field
wijmo.chart Namespace > chart_axes Interface : y Field
An object containing all of the information to create the Y axis of the chart.
Type: Object
Default: see example code below.
Syntax
var instance; // Type: wijmo.chart.chart_axes;
var value; // Type: chart_axis
value = instance.y;
var y : chart_axis;
Example
Default value of the axis y object.
y:{
    alignment: "center",
    style: {stroke: "#999999", "stroke-width": 0.5}, 
    visible: false, 
    textVisible: true, 
    textStyle: {fill: "#888", "font-size": 15, "font-weight": "bold"}, 
    labels: {
        style: {fill: "#333", "font-size": 11},
        textAlign: "center", 
        width: null
    },
    compass: "west",
    autoMin: true,
    autoMax: true,
    autoMajor: true,
    autoMinor: true,
    gridMajor: {
        visible: true, 
        style: {
            stroke: "#999999", 
            "stroke-width": "0.5", "
            stroke-dasharray": "none"
        }
    },
    gridMinor: {
        visible: false, 
        style: {stroke: "#CACACA", "stroke-dasharray": "- "}
    },
    tickMajor: {
        position: "none",
        style: {fill: "black"},
        factor: 1
    },
    tickMinor: {
        position: "none",
        style: {fill: "black"},
        factor:1
    },
    annoMethod: "values",
    valueLabels:[]
}
See Also

Reference

chart_axes Interface