Wijmo UI for the Web
style Field
wijmo.chart Namespace > piechart_labels Interface : style Field
A value that indicates the style object to apply to the chart labels. For more information, see Style Options
Syntax
var instance; // Type: wijmo.chart.piechart_labels;
var value; // Type: any
value = instance.style;
var style : any;
Example
labels: {
    style: {
        "font-size": 11
    },
    formatter: function () {
        return this.chartLabel + " : " + Globalize.format(this.value / this.total, "p2");
    },
    connectorStyle: {
        fill: "red",
        stroke: "red",
        "stroke-width": 2
    },
    position: "outside",
    offset: 30
}
Remarks
Note: Any style options set in the fallback textStyle option are used for any style options that are not set explicitly (or set by default) in this option. The style object is defined in RaphaelJS, in the attr method’s parameters. Here is an external link to the documentation: http://raphaeljs.com/reference.html#Element.attr
See Also

Reference

piechart_labels Interface