This is a migrated thread and some comments may be shown as answers.

Links under RadChart HELP not working

2 Answers 61 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Shailendra
Top achievements
Rank 1
Shailendra asked on 28 Aug 2008, 04:34 PM
I am trying to use the Radchart and I need to customize it. There are 100s of properties for Radchart for which I need to look in the documentation. Unfortunately, none of the links in the help file (downloaded/online) are working except the main links.

For example:
http://www.telerik.com/help/aspnet/chart/understandingelementsbackground.html

and none of the links in this page are working.

Besides appearance I need to remove the background area in the pie chart, i.e. I wanna show just the pie chart (circle). Since, this is an urgent requirement I cannot wait for the answers here in this forum.

Please look into it and suggest me where to find the description for all the properties of chart.

Thanks,
~SP

2 Answers, 1 is accepted

Sort by
0
Accepted
Ves
Telerik team
answered on 01 Sep 2008, 08:44 AM
Hello Shailendra,

Indeed, there is an issue with the links in some help topics, which we will investigate. Please, accept our apologies for the inconvenience. For the time being you can use the corresponding help topics in RadChart for ASP.NET AJAX, for example the "Background and Plot Area" help topic can be found here.

As for hiding the plot area background -- you can modify the plot area appearance like this:

<telerik:RadChart ID="RadChart1" runat="server"
                <PlotArea> 
                    <Appearance Dimensions-Margins="0px, 0px, 0px, 0px"
                        <FillStyle FillType="Solid" MainColor="Transparent"
                        </FillStyle> 
                        <Border Visible="False" /> 
                    </Appearance> 
                </PlotArea> 
                <ChartTitle Visible="False"
                </ChartTitle> 
                <Legend Visible="False"></Legend> 
            </telerik:RadChart> 

You can also hide the chart title and legend as shown in the above snippet.

Sincerely,
Ves
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Shailendra
Top achievements
Rank 1
answered on 02 Sep 2008, 02:56 PM
Thanks Ves, but I already figured it out which properties to use and completed the module already :)

~SP
Tags
Chart (Obsolete)
Asked by
Shailendra
Top achievements
Rank 1
Answers by
Ves
Telerik team
Shailendra
Top achievements
Rank 1
Share this question
or