SpreadJS Documentation
wholeSlicerStyle Method
The style of the whole slicer.
Gets or sets the style of the whole slicer.
Syntax
var instance = new GcSpread.Sheets.SlicerStyle();
var value; // Type: SlicerStyleInfo
value = instance.wholeSlicerStyle(item);
function wholeSlicerStyle( 
   item : SlicerStyleInfo
) : SlicerStyleInfo;

Parameters

item
The style of the whole slicer.

Return Value

Returns the style of the whole slicer.
Example
This example sets slicer styles.
//create a table
datas = [
    ["1", "NewYork", "1968/6/8", "80", "180"],
    ["4", "NewYork", "1972/7/3", "72", "168"],
    ["4", "NewYork", "1964/3/2", "71", "179"],
    ["5", "Washington", "1972/8/8","80", "171"],
    ["6", "Washington", "1986/2/2", "89", "161"],
    ["7", "Washington", "2012/2/15", "71", "240"]];
var table = activeSheet.addTableByDataSource("table1", 2, 2, datas);
dataColumns = ["Name", "City", "Birthday", "Weight", "Height"];
table.setColumnName(0, dataColumns[0]);
table.setColumnName(1, dataColumns[1]);
table.setColumnName(2, dataColumns[2]);
table.setColumnName(3, dataColumns[3]);
table.setColumnName(4, dataColumns[4]);

//add a slicer to the sheet and return the slicer instance.
var slicer = activeSheet.addSlicer("slicer1",table.name(),"Height");
slicer.position(new GcSpread.Sheets.Point(100, 200));
//set customized style
var style = new GcSpread.Sheets.SlicerStyle();
var styleInfo1 = new GcSpread.Sheets.SlicerStyleInfo();
styleInfo1.backColor("orange");
styleInfo1.borderBottom(new GcSpread.Sheets.SlicerBorder(2,"solid","green"));
style.wholeSlicerStyle(styleInfo1);
var styleInfo2 = new GcSpread.Sheets.SlicerStyleInfo();
styleInfo2.backColor("red");
styleInfo2.borderBottom(new GcSpread.Sheets.SlicerBorder(4,"solid","gray"));
style.hoveredSelectedItemWithDataStyle(styleInfo2);
slicer.style(style);
See Also

Reference

SlicerStyle type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.