Adding a lineseries to an area chart

Hi all,
I was wondering if anyone knew of any issues adding a
lineseries to an areachart in Flex 3? I have an areachart with an
areaseries showing various data. I want to allow the user to add in
a threshold in the form of a lineseries on the area chart. To do
that I've created the following 2 attached functions.
I've tested these functions on their own on a LineChart and
the threshold line appears fine but when I try to add them to the
AreaChart nothing comes up? Does anyone have any ideas what I'm
doing wrong or how I can get the lineseries to appear on the
areachart? Any help really would be greatly appreciated as I can't
seem to figure it out!
Thanks in advance,
Derm

nikkib04 wrote:
I tried exactly what you said and here are the photos. Will they fit in the boxes to cover the black background without stretching the picture? I did not see a option to fit the photos into each black square.
Why not make your own montage?
Photoshop Elements Techniques, Tutorials, Downloads, Video Tips, Newsletter and more - Photoshop Elements User
For Yohl - Birthday Photo Collage Instructions - Elements Village

Similar Messages

  • Problem with Stacked area chart

    Hi all,
    I'm working on delivery data according to month having input(combo) as the year. I'm trying to display the data in percentages in Stacked area chart having series as ontime delivery, 1 week late, 2 weeks late,........5 weeks late and category labels as months. The problem is when I take the Preview of data I get to see the data for ontime, 1 week , 2 week as it should be but when I hover the mouse over the 2 weeks data area  mouse over values shows 5 weeks data(0 %) where as in reality the colored area belongs to 2 weeks data. I tried to delete 5 weeks series data and now it shows as 4 weeks data.
    What could be the problem ?
    Thanks

    >
    Raghavendra Gadhamsetty wrote:
    > Did you try adding the formula year(datefield) in X axis by removing the existing datefield?
    >
    > Regards,
    > Raghavendra
    Thanks for the answer regarding dates. I'm still awaiting an answer on the following part of my question:
    "My problem is that I am trying to configure a stacked area chart to show various related financial figures over the period of a year or more. My problem with a regular stacked area chart is that because of the large number of data points (daily) the X axis becomes far too chaotic with the large number of labels. The obvious option seems to be to use the "Show time scale" option in axis settings, however when you chose this option the "Date axis area" chart type is automatically chosen and this chart type doesn't seem to allow stacking. Can anybody help?"
    Thanks in advance for your help.
    Kind Regards,
    Mark

  • Data point in area chart

    Hello,
    I have an area chart where month from Jan to Dec is displayed in x-axis and values are on y-axis. When user hover over first data point which should be jan, it dispalys Feb. Jan data point is not dispalying in hover over. Also area chart does not start from
    (0,0) coordinate. There is the s0me gap in x-axis and then Jan starts.
    Can you help please?

    Hi 1234alex,
    Per my understanding that you have design an area chart but the first data point which show the Jan didn't show but start with Feb, right?
    I have tested on my local environment and can reproduce the issue, the issue can be caused by you have set the "hide first and last labels along this axis" in the "Horizontal Axis Properties".
    Details informaion below for your reference:
    Right click the X chart axis and select the "Horizontal Axis Properties" and click the "Labels" on the left to check you haven't check the "hide first and last labels along this axis"
    If you haven't check it but still can't see the Jan shown, please check the sorting expression(If you have added to order the month in the x-axis, please provide it) to see if it is correct.
    I have add some sample data below and create area chart and also area chart combined with line chart, preview result as below, works fine:
    If your problem still exists, please try yo provide some sample data of the table and also the snapshot of the chart, if you have using some expression or setting, please also provide them.
    Any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Adding a plot to a Waveform Chart

    I have a waveform chart being used in an application.  In the
    sequence of events, I first create upper and lower limits to display on
    the chart based on a tolerance.  This means that I've set up the
    chart with two plots before the program begins, and I'm only showing 20
    seconds worth of data to the user at a time (the run may be up to 1200
    seconds).  When the user hits the run button, the tolerance limits
    are pulled from a file, then displayed on the waveform chart, and the
    chart begins at time 0.
    Once the program starts, I need to add a plot to the Waveform Chart
    that will visually show the user where they are in relation to the
    tolerances that have already been plotted.  This plot contains a
    frequency value read from a counter input.  My question is - how
    do I go about adding this plot to the waveform chart while keeping the
    upper and lower tolerances displayed on this chart?  I've looked
    through the property nodes, but can't find anything related to plotting
    the value in relation to time.
    I've attached a screenshot to provide some idea of what I'm trying to
    accomplish.  The upper Waveform chart shows the upper and lower
    tolerances.  The actual plot I want to add won't show up during
    the run, but once the run is complete, the user will be able to use the
    X Scrollbar to roll back and see the actual trace.  I am working
    now on an indicator that will provide an arrow to show the user where
    they are within the Waveform Chart.  The bottom graph shows the
    entire run of the trace, along with cursors, that provide the user with
    a point of reference during the test.
    Thanks for any help!
    tsc
    Attachments:
    waveform_chart.JPG ‏36 KB

    Here's a quick example (LabVIEW 7.1).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    updateGraph.vi ‏38 KB

  • Adding custom axis titles for Bubble Chart

    How to add custom axis titles (for each group of axis values) as shown in the attached figure to a bubble chart ?
    - Sen

    I'm trying to do essentially the same thing with a LineChart and I think I've got part of it figured out.
    I've subclassed CategoryAxis and overridden reduceLabels to return only certain labels (the "group" labels). Then I create a new axis by adding a LineSeries to the chart's <series> element with the new axis within the LineSeries. Then I have an AxisRenderer in the chart's horizontalAxisRenderers tag that refers to the new axis from within the LineSeries.
    Subclassed axis:
        public class MonthCategoryAxis extends CategoryAxis
            public function MonthCategoryAxis()
                super();
            override public function reduceLabels(intervalStart:AxisLabel, intervalEnd:AxisLabel):AxisLabelSet
                var currentLabels:AxisLabelSet = this.getLabels(0); // Param is ignored by super class
                var newLabels:Array = []; // Labels to keep
                var label:AxisLabel;
                var previousLabel:AxisLabel;
                for (var i:int = 0; i < currentLabels.labels.length; i++)
                    label = currentLabels.labels[i];
                    if (i == 0) // Keep the first label
                        newLabels.push(label);
                    else if (label.value.month != previousLabel.value.month)
                        // Only keep a label if the previous label has a different month
                        newLabels.push(label);
                    previousLabel = label;
                // Return a new AxisLabelSet with just the labels we want
                var newLabelSet:AxisLabelSet = new AxisLabelSet();
                newLabelSet.labels = newLabels;
                return newLabelSet;
    New series to create the subclassed axis in.
                <mx:LineSeries>
                    <mx:horizontalAxis>
                        <charts:MonthCategoryAxis id="MonthAxis" labelFunction="calendarMonthAxisLabelFunction"/>
                    </mx:horizontalAxis>
                </mx:LineSeries>
    The AxisRenderer. canDropLabels must be "true".
                <mx:AxisRenderer axis="{MonthAxis}" canDropLabels="true" showLine="false" tickPlacement="none">
                    <mx:labelRenderer>
                        <mx:Component>
                                <mx:Label width="100%">
                                <mx:Script>
                                    <![CDATA[
                                    override public function set data(axisLabel:Object):void
                                        this.text = outerDocument.getMonthLabel(axisLabel.value);
                                    ]]>
                                </mx:Script>
                                </mx:Label>
                        </mx:Component>
                    </mx:labelRenderer>
                </mx:AxisRenderer>

  • Crystal Report 2008 Area Chart Data Label Problem

    Stacked Area Chart (Layer Cake) Issues:
    We would like to use a Crystal Report (2008) Stacked Area Layer Cake chart to show the workload RPD's (Sum of Resources Per Day = Y value axis) and Data_Date of the study (M,Month of study date = X value axis, using fiscal year type cycle Oct - Sept).
    Each Stacked Area represents the workload RPD's for a single project, or group of projects.
    When showing labels or series information the chart becomes overloaded and not visible to read because there is over 400 data points.
    Is there a way to break this dataset down so that values and/or labels are visible, using the crystal report options available? To suppress multiple layers and show a single label per layer?
    We tried using the Color Highlight to group and display them by group and condition. The labels and series data points are still over crowded.
    We also need to overlay the chart with the Average FC Totals from an additional Crosstab report.  Is there a way to overlay this over the 1st layer of the report?

    Stacked Area Chart (Layer Cake) Issues:
    We would like to use a Crystal Report (2008) Stacked Area Layer Cake chart to show the workload RPD's (Sum of Resources Per Day = Y value axis) and Data_Date of the study (M,Month of study date = X value axis, using fiscal year type cycle Oct - Sept).
    Each Stacked Area represents the workload RPD's for a single project, or group of projects.
    When showing labels or series information the chart becomes overloaded and not visible to read because there is over 400 data points.
    Is there a way to break this dataset down so that values and/or labels are visible, using the crystal report options available? To suppress multiple layers and show a single label per layer?
    We tried using the Color Highlight to group and display them by group and condition. The labels and series data points are still over crowded.
    We also need to overlay the chart with the Average FC Totals from an additional Crosstab report.  Is there a way to overlay this over the 1st layer of the report?

  • Problem with Area  Chart

    Hi EveryOne,
    Me having problem with area chart,i have taken 3 area series
    to plot when me plotting the values one of the series is getting
    overlapped,Why its happening like this? Me attached the code
    Thanks in advance.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script><![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    public var expenses:ArrayCollection = new ArrayCollection([
    {Month:"Jan", Profit:0, Expenses:0, Amount:450},
    {Month:"Feb", Profit:5, Expenses:0, Amount:600},
    {Month:"Mar", Profit:5, Expenses:5, Amount:300},
    {Month:"Mar", Profit:0, Expenses:5, Amount:300}
    public var expenses1:ArrayCollection = new ArrayCollection([
    {Month:"Jan", Profit:0, Expenses:5, Amount:450},
    {Month:"Feb", Profit:5, Expenses:5, Amount:600},
    {Month:"Mar", Profit:5, Expenses:10, Amount:300},
    {Month:"Mar", Profit:0, Expenses:10, Amount:300}
    public var expenses2:ArrayCollection = new ArrayCollection([
    {Month:"Jan", Profit:5, Expenses:0, Amount:450},
    {Month:"Feb", Profit:10, Expenses:0, Amount:600},
    {Month:"Mar", Profit:10, Expenses:6, Amount:300},
    {Month:"Mar", Profit:5, Expenses:6, Amount:300}
    ]]></mx:Script>
    <mx:AreaChart id="myChart"
    showDataTips="true">
    <mx:series>
    <mx:AreaSeries id="ara" dataProvider="{expenses}"
    xField="Expenses"
    yField="Profit"
    />
    <mx:AreaSeries id="ara1" dataProvider="{expenses1}"
    xField="Expenses"
    yField="Profit"
    />
    <mx:AreaSeries id="ara2" dataProvider="{expenses2}"
    xField="Expenses"
    yField="Profit"
    />
    </mx:series>
    </mx:AreaChart>
    </mx:Application>

    Seems to simply be a problem with your data. See this
    code.

  • Area Chart not displaying correct data - please help

    Post Author: nmellick
    CA Forum: Charts and Graphs
    Hello, I am new to Crystal Reports so any help would be greatly appreciated!  I have a report that counts incidents for each hour in a 24 hour period.  When I graph the results, the first line of the graph is wrong, but the rest of the graph is correct.  I don't understand why the first line is not charting what the amounts were calculated to be.  The hour ranges are in military time (x-axis) and the count is the y-axis.  I am using the Area chart.
    Any help would be greatly appreciated!
    Thanks,
    N. Mellick

    Post Author: nmellick
    CA Forum: Charts and Graphs
    The report first shows the list of totals.
              Acuity 1      Acuity 2     Acuity 3     Acuity 4     Acuity 5         Total
    0:00     0.00             11.00        21.00           9.00         0.00               41.00
    thru
    23:00   0.00             11.00        35.00            9.00          0.00             55.00
    And then graphs the chart into an area graph.  I recreated the report using the report wizard and now, the first item in the list will be a duplicate of some other time (no reason on why it chooses the one it does).  So for instance, this report date range will first show:
    19:00           0.00               7.00       39.00             8.00            0.00         54.00
    20:00
    21:00
    22:00
    23:00
    0:00
    1:00
    and so on.  When it gets to 19:00, it is the same data line as the first one.  The report should start at 0:00 and go through 23:00 (midnight hour to 11:00 pm).  The wierd thing is that when the chart graphs, it will put the first line item in the report as 0:00 (in this case it's plotting the 19:00 line item in the 0:00 spot) and then the remainder of the hours is plotted correctly.
    I did check and I do have it switching by hour.  Sorry if this is confusing.  I tried to attach the actual report, but I don't have rights to do that.
    Thanks,
    NMellick

  • Area Chart for More than 4 Groups

    Area chart will allow me to add 11 items under Show Values in Chart Expert, but the colors I select for each keep changing.  Also can't get items to display in alphabetical order.  Any way to do this?  I'm running Version 11.5.10.1263.

    hello Royal,
    can you post a screen shot of your chart as it is now as well as a mock-up of what you'd like it to look like?
    -jamie

  • HT1391 how do I find free downloads that I have added to my library that are not showing up in the library on in icloud?

    How do I find free downloads that I hve added to my library that are not in my library or in icloud?

    Hi revsteph,
    If you have songs that you know you have purchased, but are not showing up in your iTunes Libarary, you may want to see if you can redownload them. You may find the following article helpful:
    Apple Support: Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    - Brenden

  • Area Chart View in OBIEE 10 g

    I have a Area chart view which shows sales volume by Product by Time. Time Dimension is plotted on X axis and Product is used as Legends (Measure Labels in Pivot Table Chart View). The Problem is user wants to display the Legends as Data Labels on Rollover. Right now when we roll over we will see Sales Volume. Is there any work around for this?

    Hi,
    Drill in place should work. Because that is the purpose of it. Try one thing- Keep one single report in the section and give drill in place and check.
    If this is not working then you need to create a separate page and give navigation to that page, so that the report appears to be in the same page.
    Please let me know further.
    Hope this helps you.
    Regards
    MuRam

  • OBIEE 10g - Ability to overlay Area Chart?

    Hi Experts,
    I am using OBIEE 10g. I have a requirement to plot Total Market Units with Brand units over time in an Area Chart. The requirement here is that the area of Brand Units should overlay on the Market units measure thus signifying that Brand units is out of the total Market Units, but when this is being plotted into an Area Chart, the Market Units is stacked on top of the Brand Units therefore the chart's total (highest point) on the Y Axis is Market Units + Brand Units but I want this total to reflect only the Market Units figure.
    Is there anyway in an Area Chart to show the figures for Market Units and Brand units separately (when mouse rollover) but on the Y axis, it's just showing the Market units's figure?
    Sorry if I had confused anyone but I had tried to explain the requirement as best as I can.
    Thanks in advance!
    Chris

    Using logical query filters can convert to sql but it should not with XML.
    This is expected behavior for logical queryies only.

  • Crystal 11 Stacked Area Chart Data Start Point X-Axis

    I am trying to create a Stacked area chart and by default there is space between the y-axis and the first data point on the x-axis. Is there any way to eliminate this space so that the first data point appears directly on the y-axis?

    I found the answer to my question. Uncheck the box "Value Axis Crosses Between Groups" in the "Group (X) Axis Settings" dialog box.
    Edited by: Chuck Gebhardt on Oct 14, 2011 12:28 AM

  • Area chart with line graph combo - Is this possible to create?

    Can you create an area chart and line chart combo? The line bar combo chart doesn't capture what I want.

    hi,
    it is better for 2 different questions,make 2 differents threads...
    You used the 2ond solution(google???),put in the dashboard...html enabled...and check your pdf again.
    Moreover,printing pdf with answer is discouraged...always prefer Xml Publisher.
    Last,there are 2 fst files which configure the *.pdf files , check them,
    http://obiee101.blogspot.com/2008/09/obiee-pdf-controls-fst-files.html
    hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • How to dynamically display data labels in area chart

    Hello, everyone,
    I have an stacked area chart with the data set as follows:
    Values: sales
    Category Group: date
    Series Group: products
    Now I have an requirement to display the data labels in the chart for the top 3 products with the highest sales within a certain time period (based on the date parameter). E.g. product1 in the product 1 area, product 2 in the product 2 area, etc.
    Is this possible? If so how do I go about doing it?
    Your help is much appreciated
    Kind regards

    Hi QQFA,
    According to your description, you have a stacked area chart. Values is sales, Category  Group is date, and Series Group is product. Now you want to show only top 3 products which has the highest sales data labels for each date.
    In SQL SERVER Reporting Service, we can achieve this goal by using expression in Series Label Properties setting. I have tested it on my local environment, you can follow these steps below:
    Create a new DataSet(name is “top3”).
    Select use a embedded dataset in my report and put
          “ select * from(
          select Product,Sales,[Date],
          ROW_NUMBER() over (partition by [Date] order by Sales desc) as rn
          from #temp)
          where rn<4 ”
        into Query.
    Right Click on your chart, select “show Data Labels”.
    Right Click on any label that just appeared, select Series Labels Properties .
    Click the “fx” next to Label data textbox.
    Type the expression below into Set expression for Label :
         “=IIF(InStr(Join(
         lookupset(Fields!Date.Value,Fields!Date.Value,Fields!Product.Value,
         "top3"),","),Fields!Product.Value)>0,Fields!Sales.Value,"")”
         (Ps: the “lookupset” function is only supported  in SQL SERVER 2008 R2 or later) 
    Click “OK”.
    Save and preview the chart ,as shown here:
    Now your chart will show you the top 3 highest sales product data labels in corresponding area.
    Reference:
    LookupSet Function
    Expression and Functions
    If you have any question ,please feel free to ask.
    Best Regards,
    Simon

Maybe you are looking for

  • How can I install CS6 without a disk drive?

    Hi there! I recently purchased the Creative Suite 6 Design and Web Premium addition. The sales person at the store assured me that despite not having a CD drive in my Macbook Pro there would be a way to install/download the suite with the product inf

  • Why can't I open a new Tab with the "Plus" sign or "Command-T"?

    If I want to open a New Tab, I either press "Command T" or select "New Tab" from the File menu, or click the little "plus" sign in my Tabs bar - - - right? None of them work. What am I missing?

  • Missing "pre order points" for Shadow of Mordor.

    I've recently received Shadow of Mordor, I had the game pre ordered, but I'm positive that I didn't receive the 500 bonus points for pre ordering. I can't tell if they're pending or what with the new system, and I can't report those points missing th

  • Canvas on a Frame

    I'm trying to add a canvas with a test string on it to a frame. I just see the button but no string. What's wrong here? import java.awt.* public class SurfString extends Canvas      public void paint(Graphics g) {           g.drawString("Hello World!

  • How to use 2 TMG Servers for Internet Access

    Hi there, This is what we have setup at the moment. We have two TMG 2010 SP2 Servers, let's call them TMG1 & TMG2. They sit in two different sites (physically not logically) which I will refer to as Site1 and Site2. TMG1 sits in Site1 and TMG2 in Sit