|
<div class="control-section">
<ejs-pivotview id="pivotview" allowExcelExport="true" allowConditionalFormatting="true" allowPdfExport="true" showToolbar="true" allowCalculatedField="true" showFieldList="true" showGroupingBar="true" width="100%" height="600" toolbar="@(new List<string>() {"New", "Save", "SaveAs", "Rename", "Remove", "Load",
"Grid", "Chart", "MDX", "Export", "SubTotal", "GrandTotal", "ConditionalFormatting", "FieldList" })" saveReport="saveReport" loadReport="loadReport" fetchReport="fetchReport" renameReport="renameReport" removeReport="removeReport" newReport="newReport" toolbarRender="beforeToolbarRender">
<e-datasourcesettings catalog="Adventure Works DW 2008 SE" cube="Adventure Works" url="https://bi.syncfusion.com/olap/msmdpump.dll" providerType="SSAS" enableSorting="true">
<e-rows>
<e-field name="[Customer].[Customer Geography]" caption="Customer Geography"></e-field>
</e-rows>
<e-columns>
<e-field name="[Date].[Fiscal]" caption="Date Fiscal"></e-field>
<e-field name="[Measures]" caption="Measures"></e-field>
</e-columns>
<e-values>
<e-field name="[Measures].[Customer Count]" caption="Customer Count"></e-field>
<e-field name="[Measures].[Internet Sales Amount]" caption="Internet Sales Amount"></e-field>
</e-values>
<e-filtersettings>
</e-filtersettings>
</e-datasourcesettings>
<e-gridSettings columnWidth="160"></e-gridSettings>
<e-displayOption view="Both"></e-displayOption>
<e-chartSettings title="Sales Analysis" load="onChartLoad"></e-chartSettings>
</ejs-pivotview>
</div> |
|
public IActionResult Index()
{
ViewBag.filterMembers = new string[] { "[Date].[Fiscal].[Fiscal Quarter].&[2002]&[4]", "[Date].[Fiscal].[Fiscal Year].&[2005]" };
return View();
} |
|
S.No |
Query |
Comments |
|
1. |
This example uses the Blazor component; please, is it possible to have one working with ASP.NET Core inside a Blazor application, as in the example I send you? |
We have modified the provided sample as you mentioned. But we are unable to reproduce the problem at our end. Please refer the following video and sample.
Sample:
Kindly reproduce the issue in the above sample and revert us or send us your applicable to us. This would be helpful for us to proceed further. |
|
2. |
One question: on the IIS server with the msmdpump.dll is there any particular setting I need to do in order to make it work? |
Kindly refer below link to configure the msmdpump.dll.
|