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

I Want LOGSCALE....

1 Answer 40 Views
Chart
This is a migrated thread and some comments may be shown as answers.
sumin park
Top achievements
Rank 1
sumin park asked on 23 Sep 2009, 05:17 AM

When I run the following sources, I shows linearscale.
I want Logscale. 
what must i change?


RadChart1.SeriesMappings.Clear();
SeriesMapping sm1 = new SeriesMapping();
BarSeriesDefinition d1 = new BarSeriesDefinition();
           
            sm1.SeriesDefinition = d1;
            sm1.LegendLabel = "Bar Series";
            sm1.CollectionIndex = 0;

            ItemMapping im1 = new ItemMapping();
            im1.DataPointMember = DataPointMember.YValue;
            sm1.ItemMappings.Add(im1);

            RadChart1.SeriesMappings.Add(sm1);
           
           

            List<double[]> itemsSource = new List<double[]>
            {
                new double[]{23,123,23,32,2,2,2,2,2,55,5,55,34,2.2,25.3,22.3,43.6}
            };
            int startYear = System.DateTime.Today.Year - 10;
            this.RadChart1.ItemsSource = itemsSource;
            foreach (TickPoint tickPoint in RadChart1.DefaultView.ChartArea.AxisX.TickPoints)
            {
                tickPoint.Label = startYear.ToString();
                startYear++;
            }

            RadChart1.DefaultView.ChartLegend.Visibility = Visibility.Collapsed;

1 Answer, 1 is accepted

Sort by
0
Accepted
Vladimir Milev
Telerik team
answered on 25 Sep 2009, 03:36 PM
Hi sumin park,

This feature is not currently available. It is scheduled tentatively for Q3 2009 release.

All the best,
Vladimir Milev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Chart
Asked by
sumin park
Top achievements
Rank 1
Answers by
Vladimir Milev
Telerik team
Share this question
or