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

Rad Bar Chart query

1 Answer 70 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Amey
Top achievements
Rank 1
Amey asked on 06 Mar 2008, 10:04 AM
How can we set the distance or gap between individual bars or chartseriesitems? Also when we set activeregion->tooltip property, can we use any skins to show various stylish tooltips as we hv in case of radtooltip? I would also like to add tooltip to a marked zone by finding out its active region. Right now rad chart doesnt support tooltip for marked zone. But is there any way or any logic can be written to achive this functionality?

1 Answer, 1 is accepted

Sort by
0
Ves
Telerik team
answered on 10 Mar 2008, 06:25 PM
Hi Amey,

Onto your questions:

  • You can use BarWidthPercent property of the chart series
  • RadChart does not provide skinned tooltips, but you can use RadTooltipManager
  • Unfotunately RadChart does not provide active regions for marked zones
Here is an example:

<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Skin="Telerik"
        </telerik:RadToolTipManager> 
        <telerik:RadChart ID="RadChart1" runat='server' > 
            <ChartTitle> 
                <ActiveRegion Tooltip="AAAAAAAA" /> 
            </ChartTitle> 
            <Series> 
                <telerik:ChartSeries Appearance-BarWidthPercent="14"
                    <Items> 
                        <telerik:ChartSeriesItem YValue="3"></telerik:ChartSeriesItem> 
                        <telerik:ChartSeriesItem YValue="5"></telerik:ChartSeriesItem> 
                    </Items> 
                </telerik:ChartSeries> 
            </Series> 
        </telerik:RadChart> 

Hope this helps.
Regards,
Ves
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Chart (Obsolete)
Asked by
Amey
Top achievements
Rank 1
Answers by
Ves
Telerik team
Share this question
or