score:0

Accepted answer

They added this property in the chartOptions in the extension on request.

.defaultView, which is a flag used to set the chart as the default view of the widget

The Grid/Chart switcher

Thanks for all the help

score:0

There is no out of the box support for what you are asking but we can use JS to implement this functionality

When you create this TbExtendedGridView note down the class name or unique ID of your 'Chart' button and on page load put the following JS :-

$('.chart.btn').trigger('click'); //user ID or class names as selector in jQuery

This will trigger a click event on the chart button and you will get chart view by default.


More Answer

More answer with same ag