Skip to content

Commit 9816d8b

Browse files
Migrated all projects to latest TFM and Updated NuGet Packages
1 parent 21e933e commit 9816d8b

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

CircularGauge/NET10/CircularGauge_ServerApp/Components/Pages/PrintAndExport/ImageExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PNG, "CircularGauge");
14+
this.Gauge.ExportAsync(ExportType.PNG, "CircularGauge");
1515
}
1616
}

CircularGauge/NET10/CircularGauge_ServerApp/Components/Pages/PrintAndExport/PDFExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PDF, "CircularGauge", 0);
14+
this.Gauge.ExportAsync(ExportType.PDF, "CircularGauge", 0);
1515
}
1616
}

CircularGauge/NET10/CircularGauge_ServerApp/Components/Pages/PrintAndExport/Prints.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void PrintGauge()
1313
{
14-
this.Gauge.Print();
14+
this.Gauge.PrintAsync();
1515
}
1616
}

CircularGauge/NET10/CircularGauge_WasmApp/CircularGauge_WasmApp.Client/Pages/PrintAndExport/ImageExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PNG, "CircularGauge");
14+
this.Gauge.ExportAsync(ExportType.PNG, "CircularGauge");
1515
}
1616
}

CircularGauge/NET10/CircularGauge_WasmApp/CircularGauge_WasmApp.Client/Pages/PrintAndExport/PDFExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PDF, "CircularGauge", 0);
14+
this.Gauge.ExportAsync(ExportType.PDF, "CircularGauge", 0);
1515
}
1616
}

CircularGauge/NET10/CircularGauge_WasmApp/CircularGauge_WasmApp.Client/Pages/PrintAndExport/Prints.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void PrintGauge()
1313
{
14-
this.Gauge.Print();
14+
this.Gauge.PrintAsync();
1515
}
1616
}

CircularGauge/NET8/CircularGauge_ServerApp/Components/Pages/PrintAndExport/ImageExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PNG, "CircularGauge");
14+
this.Gauge.ExportAsync(ExportType.PNG, "CircularGauge");
1515
}
1616
}

CircularGauge/NET8/CircularGauge_ServerApp/Components/Pages/PrintAndExport/PDFExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PDF, "CircularGauge", 0);
14+
this.Gauge.ExportAsync(ExportType.PDF, "CircularGauge", 0);
1515
}
1616
}

CircularGauge/NET8/CircularGauge_ServerApp/Components/Pages/PrintAndExport/Prints.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void PrintGauge()
1313
{
14-
this.Gauge.Print();
14+
this.Gauge.PrintAsync();
1515
}
1616
}

CircularGauge/NET8/CircularGauge_WasmApp/CircularGauge_WasmApp.Client/Pages/PrintAndExport/ImageExport.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
SfCircularGauge Gauge;
1212
void ExportGauge()
1313
{
14-
this.Gauge.Export(ExportType.PNG, "CircularGauge");
14+
this.Gauge.ExportAsync(ExportType.PNG, "CircularGauge");
1515
}
1616
}

0 commit comments

Comments
 (0)