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

Bubble chart with bubble height and width

1 Answer 62 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Sushmitha
Top achievements
Rank 1
Sushmitha asked on 08 May 2014, 06:47 AM
Hello experts

I need a chart with ellipse where ellipse width (x-axis) is 10 to 15 and ellipse height (y-axis) is 20 to 30.

Can anybody help me to achieve this.



Thanks
:)

1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 10 May 2014, 10:33 AM
Hi Sushmitha,

You can use the following code in order to plot such a bubble item:
ASPX:
<telerik:RadChart ID="RadChart1" runat="server" Height="400px" Width="600px">
    <Series>
        <telerik:ChartSeries Type="Bubble" Name="Series 1">
            <Items>
                <telerik:ChartSeriesItem YValue="15" YValue2="25" XValue="10" XValue2="10">
                </telerik:ChartSeriesItem>
            </Items>
        </telerik:ChartSeries>
    </Series>
    <PlotArea>
        <YAxis AutoScale="false" MaxValue="30"></YAxis>
        <XAxis AutoScale="false" MaxValue="20"></XAxis>
    </PlotArea>
</telerik:RadChart>

Where YValue and XValue is the point on the coordinate system and YValue2 and XValue2 are the horizontal and vertical diameters of the ellipse.


Regards,
Danail Vasilev
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Chart (Obsolete)
Asked by
Sushmitha
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or