in src/chicletSlicer.ts [164:229]
public static DefaultStyleProperties(): ChicletSlicerSettings {
return {
general: {
orientation: Orientation.VERTICAL,
columns: 3,
rows: 0,
multiselect: true,
forcedSelection: false,
showDisabled: ChicletSlicerShowDisabled.INPLACE,
selection: null,
selfFilterEnabled: false,
filter: undefined,
},
margin: {
top: 50,
bottom: 50,
right: 50,
left: 50
},
header: {
borderBottomWidth: 1,
show: true,
outline: 'BottomOnly',
fontColor: '#a6a6a6',
background: null,
textSize: 10,
outlineColor: '#a6a6a6',
outlineWeight: 1,
title: '',
},
headerText: {
marginLeft: 5,
marginTop: 0
},
slicerText: {
textSize: 10,
height: 0,
width: 0,
fontColor: '#666666',
hoverColor: '#212121',
selectedColor: '#BDD7EE',
unselectedColor: '#ffffff',
disabledColor: 'grey',
marginLeft: 5,
outline: 'Frame',
background: null,
transparency: 0,
outlineColor: '#000000',
outlineWeight: 1,
padding: 3,
borderStyle: 'Cut',
},
slicerItemContainer: {
// The margin is assigned in the less file. This is needed for the height calculations.
marginTop: 5,
marginLeft: 0,
},
images: {
imageSplit: 50,
imageRound: false,
stretchImage: false,
bottomImage: false
}
};
}