Grid Structure
This section describes the main parts of a DikeGrid instance and how you can customize this structure.
Live example
CSS Grid Layout
Code for this section
<dike-grid id="grid-structure"
[width]="gridProperties.width"
[height]="gridProperties.height"
[displayRowId]="gridProperties.displayRowId"
[gridElevation]="gridProperties.matElevation"
[gridElevationValue]="gridProperties.elevationValue"
[striped]="gridProperties.stripeRows"
[datasource]="dkgDataSource">
<dike-grid-column
fieldName="employeeId"
headerText="Employee Id"
dataType="Text"
width="350">
</dike-grid-column>
<dike-grid-column
fieldName="firstName"
headerText="Name"
dataType="Text">
</dike-grid-column>
<dike-grid-column
fieldName="lastName"
headerText="Surname"
dataType="Text">
</dike-grid-column>
</dike-grid>Complete code
Last updated