Styling row groups for variable size groups
Styling row groups for variable size groups
Is it possible to style groups of rows based on a column of data?
For example, if I have this data:
[code]
[
['group1', 'v1'],
['group1', 'v2'],
['group2', 'v1'],
['group2', 'v2'],
['group2', 'v3'],
['group3', 'v1']
]
[/code]
Can I programmatically apply row colors based on the group data (column1)? This seems related to the asStriping option I read about, but in my application there is not a uniform, consistent striping pattern per page; it is data-dependent.
For example, if I have this data:
[code]
[
['group1', 'v1'],
['group1', 'v2'],
['group2', 'v1'],
['group2', 'v2'],
['group2', 'v3'],
['group3', 'v1']
]
[/code]
Can I programmatically apply row colors based on the group data (column1)? This seems related to the asStriping option I read about, but in my application there is not a uniform, consistent striping pattern per page; it is data-dependent.
This discussion has been closed.