SpreadJS Documentation
GC.Spread.Sheets Namespace / Worksheet type / removeSparkline Method
The row index.
The column index.
In This Topic
    removeSparkline Method
    In This Topic
    Removes the sparkline for the specified cell.
    Syntax
    var instance = new GC.Spread.Sheets.Worksheet(name);
    var value; // Type: any
    value = instance.removeSparkline(row, col);
    function removeSparkline( 
       row : number,
       col : number
    ) : any;

    Parameters

    row
    The row index.
    col
    The column index.
    Example
    This example removes a sparkline.
    var cellr = new GC.Spread.Sheets.Range(0, 0, 1, 5);
    var ex = new GC.Spread.Sheets.Sparklines.SparklineSetting();
    ex.options.SeriesColor  = "Aquamarine";
    sheet.setValue(0, 0, 2);
    sheet.setValue(0, 1, 5);
    sheet.setValue(0, 2, 4);
    sheet.setValue(0, 3, -1);
    sheet.setValue(0, 4, 3);
    sheet.setSparkline(0, 5, cellr, GC.Spread.Sheets.Sparklines.DataOrientation.horizontal, GC.Spread.Sheets.Sparklines.SparklineType.column, ex);
    alert(sheet.getSparkline(0, 5).toString());
    //sheet.removeSparkline(0, 5);
    See Also

    Reference

    Worksheet type