Alerts for Multi Series Charts

Hi All,
Can we apply alerts for multi series charts?
I am able to set the alerts if i have 1 series where as the alerts are grayed out if i create more than 1 series.
Is this design behaviour??
Is there any work around??
Thanks in advance.
Regards,
Sudharam

Install Xcelsius SP4 (available now).below features are supported among many
1.  Combination charts can have alerts for multiple series
[http://everythingxcelsius.com/news/news-alert-xcelsius-2008-service-pack-4-sp4-is-now-available-to-everyone/4030]
Sp4 Download Link:
[SAP Crystal Solutions Downloads ]
Good Luck.

Similar Messages

  • How to Put Legend for Multi Series Stacked Graph...?

    Hi Experts,
    Please guide me how to put Legend for Multi Series Stacked Graph...?
    Its very URGENT...!!!!
    Thanks in advance...
    Regards,
    Manoj

    I searched the forum using "jcombobox multiple columns". The first posting I read had a link to a posting with 4 different solutions.
    Why is it so hard to search the forum before posting a question????

  • Multi Series in Starked Column chart

    Hi all
    I want to designa dashboard to show revenue by years and by detail divisions.
    I have 3 years (YTD, last year and last 2-years) and 2 divisions (Production and Services). In Production, have 2 products and In Services have 3 services.
    The detail of requirement as below link.
    http://www.fusioncharts.com/docs/DataFormats/XML/MSStacked.html
    I try using starked Column Chart but I can't work for multi series in column.
    Who can help me the solution for this.
    Thanks

    Hi,
    Sorry to jump in.  But to give an idea of the data layout needed it is as follows:
                            Col A        Col B            Col C                Col D               Col E               Col F
    Row 1         Year      Service 1      Service 2      Service 3      Product 1      Product 2
    Row 2         2009       £100            £150                 £120
    Row 3                                                                                £200                 £250
    Row 4
    Row 5         2010       £100            £150                 £120
    Row 6                                                                                £200                 £250
    Row 7
    Row 8         2010       £100            £150                 £120
    Row 9                                                                                £200                 £250
    The Row / Col refer to excel rows and columns for ease in explaining.  Rows 4 and 7 are deliberately blank to create a gap between the columns for each year.
    You can then bind the chart data to the range B1:F9 and make sure that it is set to Data in Columns. 
    Then set the X axis labels click on the "By Series" radio button and bind the "Category Labels(X):" to the range A2:A9.
    As the X axis labels will appear directly under the first column you may wish to add some superfluous spaces in front of the year title to shift the label to the right and appear under the middle of both columns.
    Hope that all makes sense,
    Paul

  • OBIEE10g-Multiple Series Chart.

    Hi Friends,
    I have a requirement in OBIEE10g.
    MULTI SERIES CHART with STACKED.
    If it is possible, Please tell me the steps.Its urgent.
    Help appreciated.
    Regards,
    Chaitanya.P

    Thanks for the reply.
    That link tells you how to add multiple axis to a chart which
    is what I'm doing, but unless you want to have two horizontal axis
    on the bottom (which looks terrible) or put one on the top and one
    on the bottom (which looks awkward), this solution is not very
    good.
    The problem is that the data ranges for the horizontal are
    the same, but the individual timestamps are slightly different,
    sometimes off by only a few hundredths of a second.
    To attempt to work around this, I merged the two arrays, but
    that seemed to mess up the display of the data.
    Is there not a way to just draw the second series on top of
    the first without having to lock it to the axis? It seems like the
    answer is no when using the standard packages. But is there a way
    to override this and get it to draw properly?

  • Alerts in a combo chart

    Is there any way to have alerts for each series in a combo chart?

    Alerts are disabled for charts that have more than one series since you need the different colors to differentiate the series from one another.
    Thanks,
    Gerrit

  • APEX multi series line chart with different markers for each series

    I am using APEX 4.0 and trying to create a multi-series line chart that will have a different for each series.
    Does anyone know how to accomplish this?
    Edited by: user4635837 on Apr 19, 2011 7:22 AM

    Hello -
    It is possible to do.
    Another user in this forum has written some code snippets to assist in creating your own custom XML for charting. That reference can be found http://apex.oracle.com/pls/apex/f?p=36648:30:418355095936797::NO:::
    Look this over and it should get you moving in the right direction.
    What you are trying to do isn't terribly difficult. In fact, I did it fairly easily as can be seen http://apex.oracle.com/pls/otn/f?p=28155:4:362637005964920:::::
    First, create a Hidden page item.
    Next, create a process that runs before regions
    That process will create the XML for your line chart and store it in the hidden page item. Use the above references for assistance in setting up the PL/SQL in the process
    Then, create your custom XML for your chart. Replace the #DATA# tag in the custom XML with your hidden page item.
    It is a bit daunting at first, but once you get the hang of it, it really isn't that bad.
    Austin

  • Creating a multi series line chart with different data providers

    I have 3 data providers of the same structure i.e ArrayCollection of DataElement and want to use them to create a multiseries line chart. I do not have just 1 dataProvider that can be used but 3 different data providers of the same structure that i want to use each for different series.
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>
    Please help!

    Sorry for the confusion. Actually I must be doing some thing wrong like using ColumnChart to display a line chart or something like that.
    I have now realized that a multi series line chart can be built by having a different data provider for each of the LineSeries object.
    So the code below would create a multi series line graph :
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>

  • Drill Down for Multiple Series in a Line Chart

    Hello,
    I seem to have a problem with the drill-down functionality in a line chart that has multiple series.
    I have a line chart that displays the readings of a patient over a period of 1 month. For each day, there is the glucose level reading, blood pressure reading, etc... So, each reading is a different series in my line chart graph.
    The basic requirement is: With a mouse over event on the chart, I am willing to display all the data that belongs to that day. The data will be displayed at the bottom of the screen in a small panel. It is very simple to do it when the line chart has only 1 series:
    i) Enable drill down.
    ii) Choose 'Row' as insertion type.
    iii) Fill out the destination field.
    iv) Make sure your labels (at the bottom of the screen) get the data from the destination cell.
    When there is more than one series, it becomes very difficult. XCelsius will not let me use the same destination cells for different series. So, I will have to use other destination cells. In that case, I will not know on which day is the user on. Is there any way to achieve this functionality?
    Let me know if you need further information.

    This is certainly possible, but there's a bit of a trick to it (and really hard to explain without screenshots!). There's two halves to it:
    1. Write the date that has been selected to a cell (for each series).
    2. Write the name of the series that was clicked to some cell (this is the property 'Series Name Destination').
    So let's say your three series are Glucose, Blood Pressure and Temp. Have those series names in B1,C1,D1 (with your dates down in column A). Insert a row below the series names (2:2), and then set up your insertion type for the chart as 'row'. The source data (for all three series) should be your list of dates in column a. The insertion cells for the three series will be, in order, B2,C2,D2. Now, depending on which point is clicked in the chart, the selected day will be inserted into one of those three cells. Completely useless unless you know which series was clicked.
    So you need to insert the name of the series that was clicked ('Series Name Destination') into the spreadsheet, let's say in F1. The rest is just Excel formulas. The logic is, you can now tell what series was clicked, and go and look up the date that was inserted for that series, then go and look up the row that corresponds to that date. So to get the date that was just clicked, your formula (in F2) would be =HLOOKUP(F1,B1:D2,2,0).
    Then a VLOOKUP will get the results from that row of data. For example, if I inserted another row at row 3 (to show my 'result' values) the formula in B3 would be =VLOOKUP($F$2,$A$4:$D$13,2,0).
    I hope that makes sense.

  • Is there a way to change the default colors for data series in charts?

    I have tried to find settings for data series colors in the various CSS files but have not found any.

    Did you try:
    OracleBI/web/app/res/s_.../popbin/
    EX:
    line.pcxml Look for <SeriesDefinition ...
    we modified the line width and a few other things. You'll have to modify all the pcxml files for all the chart types you want to customize.

  • Function returning SQL query for mutiple series in a chart

    Hi,
    I would like to know if there is a way to specify a single PL/SQL function returning the queries for multiple series in a 2D Line Flash Chart. I have multiple series in my chart that has different values in the where clause. I can write a PL/SQL function that can return all these queries in one shot. Is there anyway that I can specify this function as returning the queries for all the series in the chart?
    As an example, assume that I am using the following three queries for the series in my chart:
    select deptno, count(*) from emp where deptno = 10 group by deptno
    select deptno, count(*) from emp where deptno = 20 group by deptno
    select deptno, count(*) from emp where deptno = 30 group by deptno
    I can't write a PL/SQL function that returns a query in the multiple series syntax (SELECT link, label, series_1_value [, series_2_value [, ...]]FROM ...) as I am using an aggregate function and my where clause is different for each series.
    Thanks,
    Rupesh

    Hi Roel,
    Thanks for your reply. I am already using an analytical function (RATIO_TO_REPORT(COUNT(*)) OVER () ) in my actual report. My problem is that the query for one series differs from the other only in one where clause. I will be able to dynamically able to generate all the queries for all the series in one pl/sql function. But the chart definition screen does not allow us to define a single function that returns queries for the all the series - possibly seperated by some seperator like S1: select.... S2:select and so on.
    Regards,
    Rupesh

  • Dynamic series in flash chart & color specified for each series

    Example of data:
    Date     Series 1     Series 2     Series 3     Series 4     Series 5     Series 6     Series 7     Series 8
    A     12     22     23     22     22     10     10     10
    B     10     9     55     8     8     20     20     20
    C     55     2     5     88     5     15     15     15
    In excel, I can get a stacked horizontal bar chart with the numbers of different series stacked and it is easy to specify the color for each series (it works with Dephi aslo).
    I use a PL/SQL to generate the dynamic series for the chart. And in my application, I need to show some serires with the same color (group of series, each has a specified color). One of the solution I am trying is to input a fixed color sequence and loop it many times in the custom color theme and then insert dummy series into the SQLS. But this could be a disaster while the number of group goes up.
    Anyone has better idea on this? Or is this a limiation of apex?
    Thanks.

    As I tried, apex can support 300 series at most. Dynamic series here is not a good solution still.

  • How to Enable Alerts for Column Chart

    Hi,
    I am new to Xcelsius. I have a column Chart with some data, I want to create alerts for that chart but Enable Alerts option is disabled. My question here is Will this option disabled for Column Chart, if not please tell me how to enable this option.
    Your reply is always appreciated.
    Regards,
    Naresh

    Hi,
    By default Enable Alert option is un ticked check box, if you try to bring new colum chart and see if that enable or not.
    If you get enabled Alert option in new one then delete old one and use new one.

  • Time-series Chart

    Warning, CR Newbie here so this may be a stupid question. I am evaluating the trial version of CR to see if it will be a good fit for an upcoming project. I've seen some related posts in the SCN, but no answers that quite fit.
    I'm looking to create a line chart (or a scatter chart) with time-series data. My dataset includes a time stamp field (yyyy-MM-dd hh:mm:ss) and some floating-point temperature values like this:
    2014-05-01 08:00:00, 123.4, 115.1, 109.2
    2014-05-01 08:00:10, 123.6, 116.0, 109.8
    The desired outcome has the date / time along the X-axis with data points spaced proportionally in the X dimension and plotted in the Y-dimension according to the temperature. The interval between the time stamps is not always the same, so numerical scaling is required on both axes. The desired chart would show a temperature scale along the vertical axis, three trend lines for the three series of temperature data and times shown on the X axis label.
    I've played with several options in an attempt to make this work. On the data tab, it would seem I would want to select "on change of" and then my time-stamp field. However, with this selection, I can only use summary values and end up with a chart with a single data point for each series. I don't need or want any summary calculations carried out on the data, I just want to plot it so I can look at a trend over time. I can get trend lines if I select "for each record" on the data tab of the wizard, but then my X-axis is meaningless and the horizontal scaling is misleading unless the interval between my samples is constant.
    I would welcome any suggestions on how best to accomplish this with Crystal Reports.
    Thanks for reading.

    Jamie,
    Thanks for continuing to reply. I am getting close, but still no success.
    Here is the procedure I've followed and problem:
    Put chart in RF section
    Start Chart Expert
    Chart Type = Numeric Axes, subtype = Date axis line chart
    Data tab
    On change of datetime field
    Order... ascending, printed for each second
    Values avg of my data fields (must select summary when on change of is used)
    Right-click on X-axis label, select Group (X) Axis Settings
    Scales tab: base unit, major unit and minor unit can only be set to days, months or years
    I cannot set the minimum and maximum date with resolution other than day
    Right-click Chart, select Chart Options...Axes tab: show group axes set to show time scale
    No matter the setting I use, I can't find a way to adjust the resolution of the time scale lower than days.
    I tried using a formula to extract only the time portion of my datetime field. I used that as my "on change" data series, hoping maybe CR would automatically recognize I was looking at a fraction of a day if I did that. No good - now it gives me a date scale with the dates showing up as the beginning of the epoch, but I can still only get resolution of integer days.
    Thanks for your patience and persistence.
    - Max

  • Show DataTips for each series

    Is there a way to customize the DataTips for each series in a
    chart? I have a column chart that has a line series in it. The
    columns display actual data, but the line shows an average.
    Currently the datatips are set to show the column chart values,
    even when a user hovers over a line chart datatip. Is there any way
    to have the datatips for the lineseries display the lineseries
    data?
    I know I could create a DataTipFormatter that included both
    the column data and the line data at the same time, but I would
    like them separate.

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    L (Flex 3):
    The LineChart control represents a data series as points
    connected by a continuous .... whose contents are highlighted when
    a user moves the mouse over it.
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-L.html
    Is it possible to use data labels with line chart? - Flex
    India:
    Feb 27, 2008 ... I want to create a line chart which shows
    all the labels, regardless of the mouse pointer.
    showAllDataTips=true works but the result is
    Link:
    http://groups.google.com/group/flex_india/browse_thread/thread/709c9651ad7c9062
    mx.charts.LineChart (Flex 2.0.1 Language Reference):
    Specifies the distance, in pixels, that Flex considers a data
    point to be under the mouse pointer when the mouse moves around a
    chart.
    Link:
    http://livedocs.adobe.com/flex/201/langref/mx/charts/LineChart.html
    Print Page - Disable datatip but keep mouse event on line
    chart:
    Flex and ActionScript 3.0 => Flex Charting => Topic
    started by: Sablotron on 29 July 2008, ... Title: Disable datatip
    but keep mouse event on line chart
    Link:
    http://www.flexdeveloper.eu/forums/index.php?action=printpage;topic=895.0
    [#FLEXDMV-1683] dataTipFunction for LineChart is not executed
    when:
    Mar 12, 2008 ... Set dataProvider for LineChart with one
    datapoint 3. Set a dataTipFunction for the LineChart Actual
    Results: Datatip does not show on mouse
    Link:
    http://bugs.adobe.com/jira/browse/FLEXDMV-1683
    Disable datatip but keep mouse event on line chart |
    flexdeveloper:
    Aug 6, 2008 ... Disable datatip but keep mouse event on line
    chart, help forums for developers working with ActionScript 3.0,
    Flex 3, Flash CS3.0, and AIR.
    Link:
    http://www.flexdeveloper.eu/forums/index.php?topic=895.msg2716
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Line Time Series Chart not working

    Hi All,
    I have one Line Time Series chart where on the X Axis i have taken one date and on Y axis one Sales Figure.Now on the Measure Lables i have taken on dimension as Customer.
    So the chart will give me something like trend which customer has how much sales figures daywise.
    Now the issue is that it shows the trend for one customer correct and shows the line but if i select second customer the graph doesnt show the line just dot for the second customer.
    Any help in this regard

    Thanks Vinod for the reply.
    Second customer doesnt have data on consecutive days but there is no pattern in that.He has data on 3rd,7th,8th,10th,15th day.
    But for all these days for the second customer dots are coming but not in the case for First Customer.
    Regards

Maybe you are looking for

  • Third party PO problem.

    Hi all I am trying to create a Third party PO  against one of my company codes .for that purpose , i have defined plant as vendor . I want the material to be directly dispartched to customer by that plant with reference to third party PO. But system

  • PDF form only allow saving as a copy

    Hi, Have an Adobe PDF form in Adobe Reader X that only allows you to save a copy of the form when data is entered into the fields.  Every time I make any changes to the form fields and hit the save button it is asking me to save under a new name.  I

  • Images too dark when I watch a movie

    Movies almost completely dark. We see less and less. The moniter brightness is at 100%.  It's now to the point that watching a movie is no longer enjoyable. 

  • Issue regarding HR_MAINTAIN_MASTERDATA

    Hi fellow Abap'ers. I am using HR_MAINTAIN_MASTERDATA to hire employees nothing wrong with that. I gather the information for the different infotypes from excel files but i only have files for Infotypes 0000, 0001 and 0008. When i execute the FM with

  • What is sync speed limited by?

    Assuming my line is all ok, what is sync speed limited by? The reason i ask is im told my exchange and line is rated for 2 meg (which i was syncing at around 2.5), on sppedtest was getting 2 meg download...so all is looking well...but then randomly o