This question is locked. New answers and comments are not allowed.
The plot area isn't accessible for me
I declared :
in C#
using Telerik.Windows.Controls;
using Telerik.Windows.Controls.Charting;
and in XML:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:telerikChart="clr-namespace:Telerik.Windows.Controls.Charting;assembly=Telerik.Windows.Controls.Charting"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:telerikQuickStart="clr-namespace:Telerik.Windows.Controls.QuickStart;assembly=Telerik.Windows.Controls"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
of course I added reference to the project:
Charting
Data
Controls
this is my code:
but I have :
The type 'PlotArea' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
the same message I have when I try to declare plot are in C#
don't redirect me to :http://www.telerik.com/help/aspnet-ajax/understandingelementsaxislabels.html
or to demos !
I need to remove axis labels , maybe you know another way,
help me please
I declared :
in C#
using Telerik.Windows.Controls;
using Telerik.Windows.Controls.Charting;
and in XML:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:telerikChart="clr-namespace:Telerik.Windows.Controls.Charting;assembly=Telerik.Windows.Controls.Charting"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:telerikQuickStart="clr-namespace:Telerik.Windows.Controls.QuickStart;assembly=Telerik.Windows.Controls"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
of course I added reference to the project:
Charting
Data
Controls
this is my code:
<telerik:RadChart x:Name="RadChart1" telerikQuickStart:ThemeAwareBackgroundBehavior.IsEnabled="True" Height="200" Width="763" BorderThickness="1" Style="{StaticResource RadChartStyle1}" > <PlotArea> <XAxis> <AxisLabel Visible="True"> <Appearance Position-Auto="False" Position-X="330" Position-Y="242" Visible="True"> </Appearance> <TextBlock Text="X"> </TextBlock> </AxisLabel> </XAxis> <YAxis> <AxisLabel Visible="True"> <Appearance Position-Auto="False" Position-X="35" Position-Y="25" Visible="True"> </Appearance> <TextBlock Text="Y"> </TextBlock> </AxisLabel> </YAxis> </PlotArea> </telerik:RadChart>but I have :
The type 'PlotArea' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
the same message I have when I try to declare plot are in C#
don't redirect me to :http://www.telerik.com/help/aspnet-ajax/understandingelementsaxislabels.html
or to demos !
I need to remove axis labels , maybe you know another way,
help me please