Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Im having issues when I create a chart and try to export it into a PNG or any other image type my data labels dont show. This is extremely necessary with my chart as they are important. When I use
private async Task Print(MouseEventArgs args)
{
await ChartObj.PrintAsync();
}
Data labels do show up but when I use
private async Task Export(MouseEventArgs args)
{
await ChartObj.ExportAsync(ExportType.PDF, "pngImage");
}
My data labels dont show up. I don't think I am missing something. I will be attaching my project for you to verify that this is happening thank you