Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't use Syncfusion assembly in project

I tried to use this code, to include Syncfusion Charts to the project

xmlns:charting="clr-namespace:Syncfusion.UI.Xaml.Charts;assembly=Syncfusion.SfChart.UWP"

but I get an error:

Undefined type "SfChart" in XML namespace "clr-namespace:Syncfusion.UI.Xaml.Charts;assembly=Syncfusion.SfChart.UWP"

If I use standard using everything ok, but app package is too big, I don't need all controls from Syncfusion SDK.

xmlns:charting="using:Syncfusion.UI.Xaml.Charts"
like image 597
SYL Avatar asked Oct 19 '22 09:10

SYL


1 Answers

It works fine with the following namespace while using assembly Syncfusion.SfChart.UWP

xmlns:charting="using:Syncfusion.UI.Xaml.Charts"

Regards,

Jessie

like image 117
Victory Jessie Avatar answered Oct 30 '22 03:10

Victory Jessie