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

Bubble Charts : Ellipses & Axis Item Labels

1 Answer 83 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Karthikeyan
Top achievements
Rank 1
Karthikeyan asked on 20 Feb 2012, 09:42 PM
More Updates in this regard:

I have attached one more screenshot to know about the pointshape settings. I have predefined the shape in the designmode as shape=Triangle. Inside code-behind, I set the shape=star3. Before this statement, it was shape=Ellipses (supposed to be Triangle). After this statement, it is shape=star3. But none of the scenario/code impacts the shape of the bubbles. Means, it remains in the ellipse shape.

As far as the #2 issue which I mentioned in the previous mail, I made gray gradiant background to solve this issue temporarily.

Please let me know if there is any updates/improvement,

Regards

1 Answer, 1 is accepted

Sort by
0
Sia
Telerik team
answered on 23 Feb 2012, 05:11 PM
Hi Karthikeyan,

The needed cannot be achieved with a bubble series. If you use such the shape depends on its XValue, XValue2, YValue and YValue2. The PointShape property is respected only if you have a series of type "Point" as follows:
<telerik:RadChart ID="RadChart1" runat="server">
    <Series>
        <telerik:ChartSeries Type="Point">
            <Appearance PointShape="Circle" />
            <Items>
                <telerik:ChartSeriesItem YValue="1" XValue="1"  />
                <telerik:ChartSeriesItem YValue="2" XValue="3" />
                <telerik:ChartSeriesItem YValue="3" XValue="4" />
            </Items>
        </telerik:ChartSeries>
    </Series>
</telerik:RadChart>

Greetings,
Sia
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Chart (Obsolete)
Asked by
Karthikeyan
Top achievements
Rank 1
Answers by
Sia
Telerik team
Share this question
or