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

A value that indicates whether to show a shadow around the edge of the chart.

Type: Boolean

Default value: false

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijchartcore("option", "shadow");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijchartcore("option", "shadow", newValue);
        
});
var shadow : boolean;
Example
<script type="text/javascript">
$(document).ready(function () {
    $("#wijbubblechart").wijbubblechart({
        shadow: true,
        seriesList: [
        {
            label: "A",
            data: {x: [40], y: [63.8], y1: [2552]}
        }, 
        {
            label: "B",
            data: {x: [16.5], y: [64.1], y1: [1057.65]}
        }, 
        {
            label: "C",
            data: {x: [13.5], y: [14], y1: [189]}
        }]
    });
});
</script>
See Also

Reference

options type
wijchartcore jQuery Widget