Ignite UI API Reference

ui.igSparkline

ui.igSparkline_image

The Sparkline control is a data-intense, design-simple graphic that allows end users to spot trends, variations and patterns in data in a clear and compact representation. It supports the following chart types: line, column, area, and win-loss, and displays more details using markers, tooltips, normal ranges, and trend lines.

Further information regarding the classes, options, events, methods and themes of this API are available under the associated tabs above.

The following code snippet demonstrates how to initialize the igSparkline control.

For details on how to reference the required scripts and themes for the igSparkline control read, Using JavaScript Resources in Ignite UI and Styling and Theming Ignite UI.

Code Sample

 
<!DOCTYPE html>
<html>
<head>
    <title></title>

    <!-- Ignite UI Required Combined CSS Files -->
    <link href="/infragistics/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="/infragistics/css/structure/infragistics.css" rel="stylesheet" />

    <script src="/js/modernizr.min.js"></script>
    <script src="/js/jquery.min.js"></script>
    <script src="/js/jquery-ui.min.js"></script>

    <!-- Ignite UI Required Combined JavaScript Files -->
    <script src="/infragistics/js/infragistics.core.js"></script>
    <script src="/infragistics/js/infragistics.dv.js"></script>

</head>
<body>

    <!-- Target element for the igSparkline -->
    <div id="sparkline"></div>

    <script>

        $(function () {

            var invoiceData = [
                { "OrderDate": "\/Date(836452800000)\/", "ExtendedPrice": 168.0000, "Freight": 32.3800 },
                { "OrderDate": "\/Date(836452800000)\/", "ExtendedPrice": 98.0000, "Freight": 32.3800 },
                { "OrderDate": "\/Date(836452800000)\/", "ExtendedPrice": 174.0000, "Freight": 32.3800 },
                { "OrderDate": "\/Date(836539200000)\/", "ExtendedPrice": 167.4000, "Freight": 11.6100 },
                { "OrderDate": "\/Date(836539200000)\/", "ExtendedPrice": 1696.0000, "Freight": 11.6100 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 77.0000, "Freight": 65.8300 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 1261.4000, "Freight": 65.8300 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 214.2000, "Freight": 65.8300 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 95.7600, "Freight": 41.3400 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 222.3000, "Freight": 41.3400 },
                { "OrderDate": "\/Date(836798400000)\/", "ExtendedPrice": 336.0000, "Freight": 41.3400 },
                { "OrderDate": "\/Date(836884800000)\/", "ExtendedPrice": 2462.4000, "Freight": 51.3000 },
                { "OrderDate": "\/Date(836884800000)\/", "ExtendedPrice": 47.5000, "Freight": 51.3000 },
                { "OrderDate": "\/Date(836884800000)\/", "ExtendedPrice": 1088.0000, "Freight": 51.3000 },
                { "OrderDate": "\/Date(836971200000)\/", "ExtendedPrice": 200.0000, "Freight": 58.1700 },
                { "OrderDate": "\/Date(836971200000)\/", "ExtendedPrice": 604.8000, "Freight": 58.1700 },
                { "OrderDate": "\/Date(836971200000)\/", "ExtendedPrice": 640.0000, "Freight": 58.1700 },
                { "OrderDate": "\/Date(837057600000)\/", "ExtendedPrice": 45.9000, "Freight": 22.9800 },
                { "OrderDate": "\/Date(837057600000)\/", "ExtendedPrice": 342.7200, "Freight": 22.9800 },
                { "OrderDate": "\/Date(837057600000)\/", "ExtendedPrice": 168.0000, "Freight": 22.9800 },
                { "OrderDate": "\/Date(837144000000)\/", "ExtendedPrice": 304.0000, "Freight": 148.3300 },
            ];

            $("#sparkline").igSparkline({
                dataSource: invoiceData,
                height: "100px",
                width: "300px",
                valueMemberPath: 'ExtendedPrice',
                labelMemberPath: 'OrderDate'
            });

        });
    </script>  

</body>
</html>
    

Related Samples

Related Topics

Dependencies

jquery-1.4.4.js
jquery.ui.core.js
jquery.ui.widget.js
infragistics.util.js

Inherits

  • brush

    Type:
    string
    Default:
    null

    Gets or sets the sparkline brush.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        brush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "brush");
    
    // Set
    $(".selector").igSparkline("option", "brush", "#00FF00");      
  • displayNormalRangeInFront

    Type:
    bool
    Default:
    collapsed

    Gets or sets the position of the normal range on the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        displayNormalRangeInFront : true
    });
     
    // Get
    var display = $(".selector").igSparkline("option", "displayNormalRangeInFront");
    
    // Set
    $(".selector").igSparkline("option", "displayNormalRangeInFront", true);         
  • displayType

    Type:
    enumeration
    Default:
    line

    Gets or sets the display type of the sparkline.

    Members

    • line
    • Type:string
    • Display the sparkline as a line.
    • area
    • Type:string
    • Display the sparkline as a filled polygon.
    • column
    • Type:string
    • Display the sparkline as a set of columns.
    • winLoss
    • Type:string
    • Display the sparkline as a set of columns on a boolean scale.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        displayType : "area"
    });
     
    // Get
    var type = $(".selector").igSparkline("option", "displayType");
    
    // Set
    $(".selector").igSparkline("option", "displayType", "area");        
  • firstMarkerBrush

    Type:
    string
    Default:
    null

    Gets or sets the first marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        firstMarkerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "firstMarkerBrush");
    
    // Set
    $(".selector").igSparkline("option", "firstMarkerBrush", "#00FF00");        
  • firstMarkerSize

    Type:
    number
    Default:
    -1

    Gets or sets the first marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        firstMarkerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "firstMarkerSize");
    
    // Set
    $(".selector").igSparkline("option", "firstMarkerSize", 1);        
  • firstMarkerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the first marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        firstMarkerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "firstMarkerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "firstMarkerVisibility", "visible");         
  • formatLabel

    Type:
    object
    Default:
    null

    Sets or gets a function which takes an object that produces a formatted label for displaying in the chart.

    Code Sample

     
    function formatFunction(val) {
        return "Label: " + val;
    };      
    
    // Initialize
    $(".selector").igSparkline({
        formatLabel : formatFunction
    });
     
    // Get
    var func = $(".selector").igSparkline("option", "formatLabel");
    
    // Set
    $(".selector").igSparkline("option", "formatLabel", formatFunction);  
    
    
  • highMarkerBrush

    Type:
    string
    Default:
    null

    Gets or sets the high marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        highMarkerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "highMarkerBrush");
    
    // Set
    $(".selector").igSparkline("option", "highMarkerBrush", "#00FF00");        
  • highMarkerSize

    Type:
    number
    Default:
    -1

    Gets or sets the high marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        highMarkerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "highMarkerSize");
    
    // Set
    $(".selector").igSparkline("option", "highMarkerSize", 1);         
  • highMarkerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the high marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        highMarkerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "highMarkerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "highMarkerVisibility", "visible");        
  • horizontalAxisBrush

    Type:
    string
    Default:
    null

    Gets or sets the horizontal axis line brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        horizontalAxisBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "horizontalAxisBrush");
    
    // Set
    $(".selector").igSparkline("option", "horizontalAxisBrush", "#00FF00");        
  • horizontalAxisLabel

    Type:
    object
    Default:
    null

    The value or content to display on the horizontal axis.
    This can be set to a formatted string, such as "{0}", or it can be set to a DataTemplate.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        horizontalAxisLabel : "Label"
    });
     
    // Get
    var label = $(".selector").igSparkline("option", "horizontalAxisLabel");
    
    // Set
    $(".selector").igSparkline("option", "horizontalAxisLabel", "Label");        
  • horizontalAxisVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the display state of the horizontal axis.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        horizontalAxisVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "horizontalAxisVisibility");
    
    // Set
    $(".selector").igSparkline("option", "horizontalAxisVisibility", "visible");        
  • labelMemberPath

    Type:
    string
    Default:
    null

    String identifier of a column or property name to get labels from on each item in the data source. These labels will be retrieved from the first and last item, and displayed by the horizontal axis.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        labelMemberPath : "label"
    });
     
    // Get
    var path = $(".selector").igSparkline("option", "labelMemberPath");
    
    // Set
    $(".selector").igSparkline("option", "labelMemberPath", "label");         
  • lastMarkerBrush

    Type:
    string
    Default:
    null

    Gets or sets the last marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lastMarkerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "lastMarkerBrush");
    
    // Set
    $(".selector").igSparkline("option", "lastMarkerBrush", "#00FF00");        
  • lastMarkerSize

    Type:
    number
    Default:
    -1

    Gets or sets the last marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lastMarkerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "lastMarkerSize");
    
    // Set
    $(".selector").igSparkline("option", "lastMarkerSize", 1);         
  • lastMarkerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the last marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lastMarkerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "lastMarkerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "lastMarkerVisibility", "visible");        
  • lineThickness

    Type:
    number
    Default:
    -1

    Gets or sets the line thickness of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lineThickness : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "lineThickness");
    
    // Set
    $(".selector").igSparkline("option", "lineThickness", 1);         
  • lowMarkerBrush

    Type:
    string
    Default:
    null

    Gets or sets the low marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lowMarkerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "lowMarkerBrush");
    
    // Set
    $(".selector").igSparkline("option", "lowMarkerBrush", "#00FF00");        
  • lowMarkerSize

    Type:
    number
    Default:
    -1

    Gets or sets the low marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lowMarkerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "lowMarkerSize");
    
    // Set
    $(".selector").igSparkline("option", "lowMarkerSize", 1);        
  • lowMarkerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the low marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        lowMarkerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "lowMarkerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "lowMarkerVisibility", "visible");        
  • markerBrush

    Type:
    string
    Default:
    null

    Gets or sets the marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        markerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "markerBrush");
    
    // Set
    $(".selector").igSparkline("option", "markerBrush", "#00FF00");        
  • markerSize

    Type:
    number
    Default:
    -1

    Gets or sets the marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        markerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "markerSize");
    
    // Set
    $(".selector").igSparkline("option", "markerSize", 1);         
  • markerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        markerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "markerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "markerVisibility", "visible");        
  • negativeBrush

    Type:
    string
    Default:
    null

    Gets or sets the negative brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        negativeBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "negativeBrush");
    
    // Set
    $(".selector").igSparkline("option", "negativeBrush", "#00FF00");        
  • negativeMarkerBrush

    Type:
    string
    Default:
    null

    Gets or sets the negative marker brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        negativeMarkerBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "negativeMarkerBrush");
    
    // Set
    $(".selector").igSparkline("option", "negativeMarkerBrush", "#00FF00");        
  • negativeMarkerSize

    Type:
    number
    Default:
    -1

    Gets or sets the negative marker size of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        negativeMarkerSize : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "negativeMarkerSize");
    
    // Set
    $(".selector").igSparkline("option", "negativeMarkerSize", 1);        
  • negativeMarkerVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the negative marker visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        negativeMarkerVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "negativeMarkerVisibility");
    
    // Set
    $(".selector").igSparkline("option", "negativeMarkerVisibility", "visible");        
  • normalRangeFill

    Type:
    string
    Default:
    null

    Gets or sets the normal range brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        normalRangeFill : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "normalRangeFill");
    
    // Set
    $(".selector").igSparkline("option", "normalRangeFill", "#00FF00");          
  • normalRangeMaximum

    Type:
    number
    Default:
    0

    Gets or sets the maximum value of the normal range.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        normalRangeMaximum : 100
    });
     
    // Get
    var max = $(".selector").igSparkline("option", "normalRangeMaximum");
    
    // Set
    $(".selector").igSparkline("option", "normalRangeMaximum", 100);       
  • normalRangeMinimum

    Type:
    number
    Default:
    0

    Gets or sets the minimum value of the normal range.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        normalRangeMinimum : 10
    });
     
    // Get
    var min = $(".selector").igSparkline("option", "normalRangeMinimum");
    
    // Set
    $(".selector").igSparkline("option", "normalRangeMinimum", 10);        
  • normalRangeVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the normal range visibility of the sparkline.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        normalRangeVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "normalRangeVisibility");
    
    // Set
    $(".selector").igSparkline("option", "normalRangeVisibility", "visible");        
  • trendLineBrush

    Type:
    string
    Default:
    null

    Gets or sets the trendline brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        trendLineBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "trendLineBrush");
    
    // Set
    $(".selector").igSparkline("option", "trendLineBrush", "#00FF00");        
  • trendLinePeriod

    Type:
    number
    Default:
    7

    Gets or sets the trendline period used by the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        trendLinePeriod : 10
    });
     
    // Get
    var period = $(".selector").igSparkline("option", "trendLinePeriod");
    
    // Set
    $(".selector").igSparkline("option", "trendLinePeriod", 10);          
  • trendLineThickness

    Type:
    number
    Default:
    -1

    Gets or sets the thickness of the sparkline's trendline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        trendLineThickness : 1
    });
     
    // Get
    var size = $(".selector").igSparkline("option", "trendLineThickness");
    
    // Set
    $(".selector").igSparkline("option", "trendLineThickness", 1);         
  • trendLineType

    Type:
    enumeration
    Default:
    none

    Gets or sets the type of trendline used by the sparkline.

    Members

    • none
    • Type:string
    • .
    • linearFit
    • Type:string
    • .
    • quadraticFit
    • Type:string
    • .
    • cubicFit
    • Type:string
    • .
    • quarticFit
    • Type:string
    • .
    • quinticFit
    • Type:string
    • .
    • logarithmicFit
    • Type:string
    • .
    • exponentialFit
    • Type:string
    • .
    • powerLawFit
    • Type:string
    • .
    • simpleAverage
    • Type:string
    • .
    • exponentialAverage
    • Type:string
    • .
    • modifiedAverage
    • Type:string
    • .
    • cumulativeAverage
    • Type:string
    • .
    • weightedAverage
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        trendLineType : "linearFit"
    });
     
    // Get
    var type = $(".selector").igSparkline("option", "trendLineType");
    
    // Set
    $(".selector").igSparkline("option", "trendLineType", "linearFit");        
  • unknownValuePlotting

    Type:
    enumeration
    Default:
    dontplot

    Gets or sets the way null values are interpreted.

    Members

    • linearInterpolate
    • Type:string
    • .
    • dontPlot
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        unknownValuePlotting : "linearInterpolate"
    });
     
    // Get
    var type = $(".selector").igSparkline("option", "unknownValuePlotting");
    
    // Set
    $(".selector").igSparkline("option", "unknownValuePlotting", "linearInterpolate");        
  • valueMemberPath

    Type:
    string
    Default:
    null

    Gets or sets the string path to the value column.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        valueMemberPath : "value"
    });
     
    // Get
    var path = $(".selector").igSparkline("option", "valueMemberPath");
    
    // Set
    $(".selector").igSparkline("option", "valueMemberPath", "value");      
  • verticalAxisBrush

    Type:
    string
    Default:
    null

    Gets or sets the vertical axis line brush of the sparkline.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        verticalAxisBrush : "#00FF00"
    });
     
    // Get
    var brush = $(".selector").igSparkline("option", "verticalAxisBrush");
    
    // Set
    $(".selector").igSparkline("option", "verticalAxisBrush", "#00FF00");        
  • verticalAxisLabel

    Type:
    object
    Default:
    null

    The value or content to display on the vertical axis.
    This can be set to a formatted string, such as "{0:n}", or it can be set to a DataTemplate.

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        verticalAxisLabel : "Label"
    });
     
    // Get
    var label = $(".selector").igSparkline("option", "verticalAxisLabel");
    
    // Set
    $(".selector").igSparkline("option", "verticalAxisLabel", "Label");      
  • verticalAxisVisibility

    Type:
    enumeration
    Default:
    collapsed

    Gets or sets the display state of the vertical axis.

    Members

    • visible
    • Type:string
    • .
    • collapsed
    • Type:string

    Code Sample

     
    // Initialize
    $(".selector").igSparkline({
        verticalAxisVisibility : "visible"
    });
     
    // Get
    var visibility = $(".selector").igSparkline("option", "verticalAxisVisibility");
    
    // Set
    $(".selector").igSparkline("option", "verticalAxisVisibility", "visible");        

For more information on how to interact with the Ignite UI controls' events, refer to
Using Events in Ignite UI.

Note: Calling API methods programmatically does not raise events related to their operation unless specifically stated otherwise by the corresponding API documentation; those events are only raised by their respective user interaction.

Show Details
  • dataBinding

    Cancellable:
    true

    Event which is raised before data binding.
    Function takes first argument null and second argument ui.
    Use ui.owner to obtain reference to igSparkline.
    Use ui.dataSource to obtain reference to instance of $.ig.DataSource.

    Code Sample

     
    //Delegate
    $(document).delegate(".selector", "igsparklinedatabinding", function (evt, ui) {
        // Get reference to igSparkline.
        ui.owner;
        
        // Get reference to instance of $.ig.DataSource.
        ui.dataSource;
    });
     
    // Initialize
    $(".selector").igSparkline({
        dataBinding: function(evt, ui) {...}
    });      
  • dataBound

    Cancellable:
    false

    Event which is raised after data binding.
    Function takes first argument null and second argument ui.
    Use ui.owner to obtain reference to igSparkline.
    Use ui.data to obtain reference to array actual data which is displayed by chart.
    Use ui.dataSource to obtain reference to instance of $.ig.DataSource.

    Code Sample

     
    //Delegate
    $(document).delegate(".selector", "igsparklinedatabound", function (evt, ui) {
        // Get reference to igBaseChart.
        ui.owner;
        
        // Get reference to igSparkline's array data.
        ui.data;
        
        // Get reference to instance of $.ig.DataSource.
        ui.dataSource;
    });
     
    // Initialize
    $(".selector").igSparkline({
        dataBound: function(evt, ui) {...}
    });       
  • destroy

    .igSparkline( "destroy" );

    Code Sample

     
    $(".selector").igSparkline("destroy");       
  • ui-sparkline ui-corner-all ui-widget-content

    Get the class applied to main element: ui-sparkline ui-corner-all ui-widget-content.
  • ui-sparkline-tooltip ui-widget-content ui-corner-all

    Get the class applied to the tooltip element: ui-sparkline-tooltip ui-widget-content ui-corner-all.

Copyright © 1996 - 2024 Infragistics, Inc. All rights reserved.

#