Ul
Creates an unordered list.
constructor(items: any[])
new Ul([
'item 1',
'item 2'
]).end;
type(type: 'square' | 'circle' | 'none'): Ul
Defines marker type.
new Ul([
'item 1',
'item 2'
]).type('square').end;
markerColor(color: string): Ul
Sets the color to the marker.
new Ul([
'item 1',
'item 2'
]).markerColor('blue').end;
Types
IUl
UL properties (extends from IStyleDefinition).
readonlyul:any[];readonlytype?:number;readonlymarkerColor?:number;