Wijmo UI for the Web
connectorStyle Field
wijmo.chart Namespace > piechart_labels Interface : connectorStyle Field

A value that indicates the style of the line that connects the labels text to the associated pie wedge.

Type: Object

Syntax
var instance; // Type: wijmo.chart.piechart_labels;
var value; // Type: any
value = instance.connectorStyle;
var connectorStyle : 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
For information on other style options that you can use, please see Style Options.
See Also

Reference

piechart_labels Interface