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

Sets a value indicating whether you can set the font-family of the text using a class instead of options. If set to true, the textStyle option is no longer used for the fallback style.

Type: Boolean

Default value: false

 

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijchartcore("option", "disableDefaultTextStyle");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijchartcore("option", "disableDefaultTextStyle", newValue);
        
});
var disableDefaultTextStyle : boolean;
Example
$("#bubblechart").wijbubblechart({
    disableDefaultTextStyle:true
});
Remarks
Note: This applies only to the font-family in the current version.
See Also

Reference

options type
wijchartcore jQuery Widget