This example shows how to set variable value from code. First, load scripts:
@using Stimulsoft.Base
@using Stimulsoft.Report
@using Stimulsoft.Report.Blazor

Next, create buttons:
<div align="center">
    <input type="text" @bind="@NewValueInput" />
    <button class="alert" @onclick="@SetVariable">Set variable</button>
</div>

Then, add report viewer:
<div align="center">
    <StiBlazorViewer Report="@Report" />
</div>

After that, create empty report object and load report template:
@code
{
    private StiReport Report;
    private string NewValueInput;

    protected override void OnInitialized()
    {
        base.OnInitialized();

        //Create empty report object
        this.Report = new StiReport();

        //Load a report template
        this.Report.Load("Reports/ReportWithVariable.mrt");
    }

...

Then, create method to set variable:
...

	private void SetVariable()
    {
        //Get a copy of the report into a new report object
		var report = this.Reports.Clone() as StiReport;
		
		//Set new value
        report["MySuperUselessVariable"] = NewValueInput;

        //Render report with new value
        report.Render();
		
		//Assign new report to the viewer
		this.Report = report;
    }
}

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Using Report Variables in Code

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.