3.2.0

Hide first row with numbers?

Hi there,
Is it possible to hide the first row with numbers (before Ticker in example) and/or hide numbers in this row?
Thanks.
October 31,
I believe your question is about leftmost column (row header)?

Change row headers width to 100px (for example):
<style>
.active-scroll-left, .active-scroll-corner {width: 100px}
.active-scroll-top, .active-scroll-data {padding-left: 100px}
</style>

Hide row headers completely:
<style>
.active-scroll-left, .active-scroll-corner {display: none}
.active-scroll-top, .active-scroll-data {padding-left: 0px}
</style>

To display something else in the row header you need to assign your own function like this:
<script>
obj.setRowText(function(i){return "Row " + i});
</script>

ActiveWidgets
Alex (ActiveWidgets)
November 1,
If you hide the row headers completely, how do you make the width 100%?
KDC
June 10,

This topic is archived.

See also:


Back to support forum