Hi Sandeep,
We regret that let you know that currently we don’t have interaction support to get the row values in OlapGrid and we have support only for drill up/down option for OlapGrid component.
Please let us know if you want any other assistance.
Thanks,
Prabu S.
Hi Sandeep,
At present we provide support only to click on the controls and get the clicked control. But we do not have support to click on a particular item of a control and load the other controls with respect to the selected item.
To achieve the feature that we provided for control selection, ie, ClientSideOnClick, ClientSideOnDblClick and ClientSideOnLoad events, the following code should be used in the cshtml page:
Here, ClientSideOnClick event will take advantage over ClientSideOnDblClick if both used at the same time.
<script type="text/javascript"> function DVOnLoad() { debugger }; function DVOnClick() { debugger }; function DVOnDblClick() { debugger }; </script>
@{Html.Syncfusion().DashboardViewer("DashboardViewer1") .ClientSideOnLoad("DVOnLoad") .ClientSideOnClick("DVOnClick") .ClientSideOnDblClick("DVOnDblClick") .XmlFilePath(ViewData["XmlPath"].ToString()).Render();} |
Regards,
Prabu S.
We regret to let you know that currently we don’t have support to get the item from particular component of dashboard viewer.
Please let us know if you want any other assistance.
Thanks,
Prabu S.