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

Scatter Plot Questions

1 Answer 73 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Piyush
Top achievements
Rank 1
Piyush asked on 10 Feb 2009, 02:14 AM
Hi,

I have a chart with approximately 3000 points loaded from a Database. While the chart looks 'ok', I am attempting to complete the following transactions:

1. The points on my scatter plot look too big. How can I shrink the size of those points to make them really look more like points rather than bubbles?

2. The X-Axis and Y-Axis increment values are currently shown at the very left and very bottom of the chart when I want to show them right within the axis (thats how normal charts display the incrementing values). How can I accomplish this?

3. Apparently I have this table with the series shown at the bottom of my chart. How can I get rid of it? I've made sure its not visible in the chart wizard.

Let me know your thoughts.

1 Answer, 1 is accepted

Sort by
0
Ves
Telerik team
answered on 10 Feb 2009, 09:06 AM
Hi Piyush,

Onto your questions:

1. You can adjust the points dimensions like this:
<telerik:ChartSeries Name="Series 1" Type="Point"
                    <Appearance PointDimentions-AutoSize="False" PointDimentions-Height="4px"  
                        PointDimentions-Width="4px"
                    </Appearance> 
                    <Items> 
                        <telerik:ChartSeriesItem Name="Item 1" YValue="4"
                        </telerik:ChartSeriesItem> 

2. I am afraid RadChart does not support this - the items for all the chart axes are designed to be shown outside the plot area and not inside it.

3. The datatable is hidden by default. You can simply remove any markup which is related to it or set RadChart.PlotArea.DataTable.Visible property to false.

I have attached a small example showing 1. and 3. in action. Hope it helps.

Best regards,
Ves
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Chart (Obsolete)
Asked by
Piyush
Top achievements
Rank 1
Answers by
Ves
Telerik team
Share this question
or