Segment Form LineChart : Line Chart « Chart « Flex






Segment Form LineChart

Segment Form LineChart
       

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  backgroundColor="#EEEEEE" layout="horizontal">


  <mx:Model id="trendModel">
<data>
    <row>
      <quarter>Q1 2010</quarter>
      <sales>1</sales>
    </row>
    <row>
      <quarter>Q2 2010</quarter>
      <sales>4</sales>
    </row>
    <row>
      <quarter>Q3 2010</quarter>
      <sales>2</sales>
    </row>
    <row>
      <quarter>Q4 2010</quarter>
      <sales>3</sales>
    </row>
</data>
  </mx:Model>  
  <mx:ArrayCollection id="trendData" source="{trendModel.row}"/>

    <mx:Panel title="Segment Form" height="100%" width="100%">
      <mx:LineChart dataProvider="{trendData}"
        height="100%" width="100%">
        <mx:horizontalAxis>
          <mx:CategoryAxis dataProvider="{trendData}" categoryField="quarter"/>
        </mx:horizontalAxis>
        <mx:series>
          <mx:LineSeries xField="quarter" yField="sales" form="segment"/>
        </mx:series>
      </mx:LineChart>
    </mx:Panel>

</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Line chart with LineSeries and CategoryAxisLine chart with LineSeries and CategoryAxis
2.Adding a legend to LineChartAdding a legend to LineChart
3.Create a LineChart controlCreate a LineChart control
4.Line Chart DemoLine Chart Demo
5.CSS for LineChartCSS for LineChart
6.Create a thick blue line for the LineChart control's line segments, with large red boxes at each data pointCreate a thick blue line for the LineChart control's line segments, with large red boxes at each data point
7.Step form LineChartStep form LineChart
8.reverse Step LineChartreverse Step LineChart
9.Vertical Form LineChartVertical Form LineChart
10.horizontal LineCharthorizontal LineChart
11.Curve LineChartCurve LineChart
12.Using XML for LineChartUsing XML for LineChart
13.Variable Series for LineChartVariable Series for LineChart
14.Track totalMemory property in a LineChart control in real timeTrack totalMemory property in a LineChart control in real time
15.Create a LineChart control that displays vertical linesCreate a LineChart control that displays vertical lines
16.Line Chart with line strokeLine Chart with line stroke
17.Data Update In Real TimeData Update In Real Time
18.Formatting linesFormatting lines
19.Set the lineSegmentRenderer to the ShadowLineRenderer classSet the lineSegmentRenderer to the ShadowLineRenderer class
20.To hide the axis line, set the value of the showLine property on the AxisRenderer object to falseTo hide the axis line, set the value of the showLine property on the AxisRenderer object to false
21.About the LinearAxis subclassAbout the LinearAxis subclass
22.Set the minimum and maximum values of a LogAxis objectSet the minimum and maximum values of a LogAxis object
23.Use a String value for the date that matches the MM/DD/YYYY pattern and specifies that the dates are displayed in units of daysUse a String value for the date that matches the MM/DD/YYYY pattern and specifies that the dates are displayed in units of days
24.Shows a parsing method that creates a Date object from String values in the data provider that match the 'YYYY, MM, DD' pattern:Shows a parsing method that creates a Date object from String values in the data provider that match the 'YYYY, MM, DD' pattern:
25.Exclude August 13, and then the range of days between August 27 and August 31Exclude August 13, and then the range of days between August 27 and August 31
26.The following example defines the range of the y-axis:The following example defines the range of the y-axis:
27.extract the data from the HTML page by using regular expressions.extract the data from the HTML page by using regular expressions.
28.Bind data provider to a local variableBind  data provider to a local variable
29.Use ActionScript to set TraceTargetUse ActionScript to set TraceTarget
30.Set TraceTarget filters to log target by using MXMLSet TraceTarget filters to log target by using MXML
31.Basic Line StrokeBasic Line Stroke
32.Dynamic chart with TimerDynamic chart with Timer