Hi all, I have a LineChart, with a lineSeries and a renderer for this series:
<mx:series>
<mx:Array>
<mx:LineSeries xField="x" yField="y">
<mx:itemRenderer>
<mx:Component>
<Identification:ChromatoItemRenderer>
</Identification:ChromatoItemRenderer>
</mx:Component>
</mx:itemRenderer>
</mx:LineSeries>
</mx:Array>
</mx:series>
In my renderer I can retrieve the information such as x and y but I
would like to pass an additional information from the dataProvider of
my chart. Is it possible ?

