Hello,
your answer did not solve my problem.
In my old Chart i had:
<radc:radchart id="RadChart2" runat="server" Width="800px" DefaultType="Line" AlternateText="" DataGroupColumn="">
<Legend>
<Background BorderColor="227, 227, 227" FillStyle="Solid" MainColor="White" />
</Legend>
<Series>
<radC:ChartSeries Name="Series 1" PointMark="Diamond" PointSize="10" ShowLabels="False"
Type="Line">
<Appearance MainColor="150, 150, 150" SecondColor="194, 194, 194" />
<Items>
<radC:ChartSeriesItem YValue="65" YValue2="100">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="47" YValue2="64">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="30" YValue2="2">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="32" YValue2="28">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="71" YValue2="34">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="61" YValue2="63">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="83" YValue2="57">
</radC:ChartSeriesItem>
</Items>
<LabelAppearance Distance="5" TextColor="Black" Visible="False">
</LabelAppearance>
</radC:ChartSeries>
<radC:ChartSeries Name="Series 2" PointMark="Diamond" PointSize="10" ShowLabels="False"
Type="Line">
<Appearance MainColor="215, 215, 215" SecondColor="241, 241, 241" />
<Items>
<radC:ChartSeriesItem YValue="7" YValue2="17">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="5" YValue2="92">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="79" YValue2="9">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="59" YValue2="47">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="6" YValue2="36">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="73" YValue2="29">
</radC:ChartSeriesItem>
<radC:ChartSeriesItem YValue="57" YValue2="49">
</radC:ChartSeriesItem>
</Items>
<LabelAppearance Distance="5" TextColor="Black" Visible="False">
</LabelAppearance>
</radC:ChartSeries>
</Series>
<PlotArea BorderColor="" Corners-BottomLeft="Round" Corners-BottomRight="Round" Corners-RoundSize="6"
Corners-TopLeft="Round" Corners-TopRight="Round" />
<ChartTitle HSpacing="10" HorPadding="10">
<Background BorderColor="199, 199, 199" FillStyle="Solid" MainColor="White" />
</ChartTitle>
<YAxis Step="20">
<Label TextFont="Arial, 10pt">
</Label>
<Items>
<radC:ChartAxisItem Label="0" />
<radC:ChartAxisItem Label="20" Value="20" />
<radC:ChartAxisItem Label="40" Value="40" />
<radC:ChartAxisItem Label="60" Value="60" />
<radC:ChartAxisItem Label="80" Value="80" />
<radC:ChartAxisItem Label="100" Value="100" />
</Items>
</YAxis>
<Gridlines>
<VerticalGridlines Visible="False" />
</Gridlines>
<Background BorderWidth="1" Corners-RoundSize="6" />
<XAxis MaxValue="7" Step="1" MinValue="1" LayoutStyle="Normal">
<Label TextFont="Arial, 10pt">
</Label>
<Items>
<radC:ChartAxisItem Label="1" Value="1" />
<radC:ChartAxisItem Label="2" Value="2" />
<radC:ChartAxisItem Label="3" Value="3" />
<radC:ChartAxisItem Label="4" Value="4" />
<radC:ChartAxisItem Label="5" Value="5" />
<radC:ChartAxisItem Label="6" Value="6" />
<radC:ChartAxisItem Label="7" Value="7" />
</Items>
</XAxis>
<YAxis2 MaxValue="7" MinValue="1" Step="1">
<Label TextFont="Arial, 10pt">
</Label>
<Items>
<radC:ChartAxisItem Label="1" Value="1" />
<radC:ChartAxisItem Label="2" Value="2" />
<radC:ChartAxisItem Label="3" Value="3" />
<radC:ChartAxisItem Label="4" Value="4" />
<radC:ChartAxisItem Label="5" Value="5" />
<radC:ChartAxisItem Label="6" Value="6" />
<radC:ChartAxisItem Label="7" Value="7" />
</Items>
</YAxis2>
<EmptySeriesMessage TextFont="Arial, 12pt" TextColor="Red"></EmptySeriesMessage>
<DataTable Position="22, 248" TableHeight="49" TableWidth="610"></DataTable>
</radc:radchart>
In my new Chart i have:
<
telerik:RadChart ID="RadChart2" runat="server" Width="800px" DefaultType="Line" EnableEmbeddedSkins="False">
<PlotArea>
<Appearance Border-Color="DimGray" >
<FillStyle FillType="Solid" MainColor="White">
</FillStyle>
</Appearance>
<YAxis Step="10" MaxValue="100">
<Appearance>
<MajorGridLines Color="DimGray" />
</Appearance>
<AxisLabel>
<TextBlock>
<Appearance TextProperties-Font="Verdana, 9.75pt, style=Bold">
</Appearance>
</TextBlock>
</AxisLabel>
</YAxis>
<XAxis MinValue="1">
<Appearance>
<MajorGridLines Color="DimGray" Visible="False" />
</Appearance>
<AxisLabel>
<TextBlock>
<Appearance TextProperties-Font="Verdana, 9.75pt, style=Bold">
</Appearance>
</TextBlock>
</AxisLabel>
</XAxis>
<YAxis2 MinValue="1">
<AxisLabel>
<TextBlock>
<Appearance TextProperties-Font="Verdana, 9.75pt, style=Bold">
</Appearance>
</TextBlock>
</AxisLabel>
</YAxis2>
</PlotArea>
<ChartTitle>
<TextBlock>
<Appearance TextProperties-Font="Verdana, 11.25pt">
</Appearance>
</TextBlock>
<Appearance Position-AlignedPosition="Top" Border-Color="DimGray" Dimensions-Margins="4%, 10px, 14px, 0%">
<FillStyle GammaCorrection="False" MainColor="224, 224, 224">
</FillStyle>
</Appearance>
</ChartTitle>
<Legend>
<Appearance Border-Color="DimGray">
<ItemMarkerAppearance Figure="Diamond">
</ItemMarkerAppearance>
<ItemTextAppearance TextProperties-Color="DimGray">
</ItemTextAppearance>
</Appearance>
</Legend>
<Series>
<telerik:ChartSeries Name="Background" Type="Area">
</telerik:ChartSeries>
<telerik:ChartSeries Name="Foreground" Type="Area">
</telerik:ChartSeries>
<telerik:ChartSeries Name="Series 3" Type="Line">
</telerik:ChartSeries>
<telerik:ChartSeries Name="Series 4" Type="Line">
</telerik:ChartSeries>
</Series>
</
telerik:RadChart>And i don't know how to get back my nice Diamonds in the graph:
<radC:ChartSeries Name="Series 2" PointMark="Diamond" PointSize="10" ShowLabels="False" Type="Line">
How is this be done in the new Chart,
I did not find any properties in the wizard.
Regards,
Pitsch