Wijmo UI for the Web
seriesHoverStyles Option
wijmo.chart.wijbubblechart Namespace > options type : seriesHoverStyles Option

Default value: []

An array collection that contains the style applied to the chart elements. For more information on the available style parameters.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  array
    returnsValue = $(".selector").wijbubblechart("option", "seriesHoverStyles");
    
    // Set value
    var newValue; // Type:  array
    $(".selector").wijbubblechart("option", "seriesHoverStyles", newValue);
        
});
var seriesHoverStyles : array;
Example
$("#bubblechart").wijbubblechart("option", "seriesHoverStyles", {
seriesHoverStyles: [
    {fill: "rgb(255,0,0)", stroke:"none"}, 
    { fill: "rgb(255,125,0)", stroke: "none" }
]});
See Also

Reference

options type
wijbubblechart jQuery Widget