Hey guys,
I'm trying to acheive the following Grid View Definition:
+--------------+--------------+--------------+----- |
| | Height | Width | Etc... |
header: + Product Name +-------+------+-------+------+------ |
| | Value | Unit | Value | Unit | |
+--------------+-------+------+-------+------+-------- |
row: | Monitor | 30 | cm | 1.2 | m | |
+--------------+-------+------+-------+------+-------- |
Width and Height are easy enough using ColumnGroupsViewDefinition. However, I can't for the life of me get the Product Name column to sit as described above. The best I can do is something like the definition below:
+--------------+--------------+--------------+----- |
| | Height | Width | Etc... |
header: +--------------+-------+------+-------+------+------ |
| Product Name | Value | Unit | Value | Unit | |
+--------------+-------+------+-------+------+-------- |
row: | Monitor | 30 | cm | 1.2 | m | |
+--------------+-------+------+-------+------+-------- |
... Which is a slightly different kettle of fish. I'm hoping I've missed something obvious.