In Flex 3, I have a line chart. My data provider for the line chart contains only one item.

When i draw the line chart, it plots the point. But it doesn't show the data tip.

It works if more than one item is present in dataprovider.

Can someone tell me how to make data tip visible for line chart with dataprovider containing single data item pls?

Thank you.

link|improve this question

0% accept rate
show some code. – J_A_X Jun 6 '11 at 14:22
feedback

2 Answers

Use PlotSeries instead of LineSeries when you only have one point. You will get a nice round point with its dataTip. How to do it exactly depends on how your data is built - if the data doesn't change after being assigned to the dataProvider, you can choose which type of series to use at that moment.

link|improve this answer
feedback

try the following code, in actionscript,

lineSeries.setStyle("itemRenderer", new ClassFactory(mx.charts.renderers.CircleItemRenderer));

in mxml,

<mx:LineSeries yField="Y" itemRenderer="mx.charts.renderers.CircleItemRenderer" xField="X" dataProvider="{lineDataProvider}">
link|improve this answer
in mxml, <mx:LineSeries yField="Y" itemRenderer="mx.charts.renderers.CircleItemRenderer" xField="X" itemRenderer="{}" dataProvider="{lineDataProvider}"> – Kishore Jun 17 '11 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.