Our employer, B-Line Express, will have a booth at MAX to showcase our B-Line Charting Components. We’ll be demonstrating both the currently available 2.5 set and the in-development 3.0 version. This latter version is a complete re-architecture around the v2 framework and supports both Macromedia Flash MX 2004 and Macromedia Flex. If you’re at MAX, come by our booth to check out how our components can be easily integrated into a Macromedia Flex application with code such as follows.
<bl:LineChart id="chart" x="0" y="0" width="500" height="400" title="SampleLine Chart" pointType="circle" dataProvider="{dataStore.sales}" marginRight="100" xmlns:bl="com.blinex.charts"> <bl:xAxis field="Month"/> <bl:yAxis minValue="0" maxValue="10" majorUnit="1"/> <bl:series title="Tom" field="tomSales"/> <bl:series title="Dick" field="dickSales"/> <bl:series title="Harry" field="harrySales"/> </bl:LineChart>