I'm using `StiMvcViewer` in my MVC app with the following code:
Code: Select all
@Html.Stimulsoft().StiMvcViewer(repName, new StiMvcViewerOptions
{
ActionInteraction = "Interaction",
ActionPrintReport = "PrintReport",
ActionViewerEvent = "ViewerEvent",
ActionExportReport = "ExportReport",
ActionGetReportSnapshot = "Load",
Width = Unit.Point(700),
ScrollbarsMode = true,
Theme = StiTheme.Windows7,
ShowTooltips = false,
Height = Unit.Point(200),
Controller = "Report",
RightToLeft = true
})
It renders just fine, and right-to-left, however print preview and all of the exports are left-to-right. Any suggestion for fixing it?
Thanks in advance.