There isn't anything in the API to do this for you, sorry. You can try to use CSS to make it work, or apply the class manually to the last row of the DataTable. Note, however, the CSS-based solutions won't work properly with table paging enabled (they will always color the last row drawn on the page, regardless of whether it is the last in the DataTable or not). Any javascript you write to handle this will have to be aware of any paging you do.
On Friday, April 20, 2012 4:45:05 AM UTC-4, Ram wrote: > > Anyone please help me... > > On Thu, Apr 19, 2012 at 4:42 PM, ram prasad <[email protected]> wrote: > >> Hi, >> >> I want to change background color of Last row only in a table. The >> ColorFormatter- format method is applied for column index only. So i >> tried to cssClassnames. >> >> * In css:* >> >> .orange-background { >> background-color: orange; >> } >> >> >> *In javascript:* >> >> var cssClassNames = { >> 'headerRow': 'orange-background large-font bold-font' //it changes the >> table header row only,I want to change last row. >> }; >> >> var options = {'showRowNumber': true, 'allowHtml': true, 'cssClassNames': >> cssClassNames}; >> >> >> Please help me to resolve this issue. >> -- >> BY >> >> R.RAMPRASAD >> >> > > > -- > BY > > R.RAMPRASAD > > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/ZVaWoFaZcXIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
