I have a requirement to display a Linechart in Flex. I have a complex Data structure that need to be displayed on LineChart.
the Structure of Data is something like this:
[Bindable]private var d:arrayCollection = [
{Schedule : "Name1", Day:{"Mon", "Tue", "Wed"}, Time{"StartTime", "EndTime"}},
{Schedule : "Name2", Day:{"Fri", "Tue", "Wed"}, Time{"StartTime", "EndTime"}},
{Schedule : "Name3", Day:{"Sat", "Tue", "Wed"}, Time{"StartTime", "EndTime"}},
{Schedule : "Name4", Day:{"Sun", "Tue", "Wed"}, Time{"StartTime", "EndTime"}}];
Here I have four Schedule. Every Schedule may have 7 days. Every Day has a startTime and EndTime. I want to draw a Line Segment for a particular day if the day is enabled in schedule. The Line start from the StartTime And Ends at EndTime. y-Axis Remain constant for both StartTime and EndTime. I attached a sample image with my Question. How Can I do This?