Skip to main content Skip to complementary content

QRow

new QRow()

Wrapper around a HyperCube data row.

Since:
  • 2.1

Properties

Name Type Description
dimensions Array.<QDimensionsCell>

Dimension cells

measures Array.<QMeasureCell>

Measure cells

cells Array

All cells, in the order they are defined in the properties.

Example

<div ng-repeat="row in data.rows" class="row"  title="{{row.dimensions[0].qText}}"
	data-value="{{ row.dimensions[0].qElemNumber }}">
	<div class="bar" style="width:{{row.measures[0].getPercent()}}%">
		<span>{{row.dimensions[0].qText}}</span>
	</div>
	<div class="per">
		<span class="{{row.measures[0].getPercent()>95 ? 'over':'' }}">{{row.measures[0].qText}}</span>
	</div>
</div>

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!