Multi-column chart issues

Hi,
I'm trying to make a 2d column chart of quiz entry results with multiple series (one per possible answer) but it's not working as intended. I have 5 series all with code like:
select null link, substr(question, 1, INSTR(question,' - ',1,1)), count(answer) from quizdata
where answer ='Strongly Disagree'
and :P13_DEP = emp_dep
and to_char(sysdate, 'YYYY') = to_char(ins_date, 'YYYY')
group by substr(question, 1, INSTR(question,' - ',1,1))Except with the answer being different (Agree, Strongly Agree~). However, when I load the page it only shows the results of the first series (Strongly Disagree, or if I delete that then Disagree)...anyone see what I'm doing wrong?
x-axis = question
y-axis = count (number of people to select that option this year)
There should be 5 columns per question.
Mike

For anyone who has a similar issue with multiple series being displayed the reason for my error was that I didn't specify a name for the value...since all of them were count(c) they clashed; making it count(c) "Disagree" etc made it display as intended.
Mike

Similar Messages

  • Column Chart Issue

    I have a column chart with multiple column series. The
    vertical axis is of DateTimeAxis and formatted for hours. In one
    instance the minimum y-value displayed on the axis is 3:00 hours.
    Two column series with values of 5:20 and 8:03 are being displayed.
    The third, whose value is 2:15, is not being displayed. I can,
    however, mouse over the x axis where the column series should be
    displayed and its dataTip pops up with the correct information,
    most importantly the time 2:15. Any thoughts???

    It seems like your veriticalAxis minimum value is above 2:15.
    Why not set it lower and see if that helps.

  • Multi-Column Report Issue

    I am using the Crystal Reports edition bundled with Visual Studio 2005. I have a problem with a multi-column report. It is a two column member directory with family members. It lists the member name, contact info, spouse, and children. I want each family group to stay together, and not break cross a column or a page. Each group may have from 3 to a dozen or so lines.
    The family groups will not break across a page (which is good), but they will break across a column (bad). I have tried many combinations of settings to make this work without success.
    So I wonder if anyone has seen and resolved this problem, or if perhaps it works better in the full version of Crystal.

    In some sub-sections, I have checked 'Suppress Blank Section' checked. In others, I have a suppression formula.
    Each section has only a single field.
    The record set that the report uses has a single row for each person. The sorting and grouping is arranged so that the first record in each family group is the 'main' member. The report displays this person's name, and also shows the sections which include address and phone number info. Subsequent records are for family members (spouse and/or children). For these records, I display the name, but suppress the address and phone sections.
    There is also a detail sub-section used as a group header. This group breaks when the first letter of the last name changes, so it an display a single letter heading ("A"). I had tried this as a regular group header too, but it didn't help.
    I have tried combining all the sections into a single one with each field on a separate line (which means the section can have some blank space), and also combined into a text box. No luck.
    I also have the group itself set to "Keep Together' in the group expert. Doesn't help/

  • Oracle Lite Multi Column Updates

    I am new to Oracle Lite. I had heard that there is some problem with Oraclelite w.r.t. handling multi column update. Something like this MAY or MAY NOT work:
    Update Emp
    set ename = 'ABC',
    job = 10,
    desc = (select 'desc' from dual)
    where empno = 10;
    Is that true? Any feedback...
    Thanks,
    SD

    I am new to Oracle Lite. I had heard that there is some problem with Oraclelite w.r.t. handling multi column update. Something like this MAY or MAY NOT work:
    Update Emp
    set ename = 'ABC',
    job = 10,
    desc = (select 'desc' from dual)
    where empno = 10;
    Is that true? Any feedback...
    Thanks,
    SD I have not seen or heard of any multi-column update issues as of 5.0.1

  • Help: Column Chart Display Issue

    Post Author: ermiller
    CA Forum: Xcelsius and Live Office
    I have a chart that displays its data correctly 11 out of 12 times...and I can't seem to get the last one to work correctly. Here's the issue:
    I have a table of data that looks like this:
    REGION                                   GAIN                           LOSS                      NET
    ALL                                           =SUM(BELOW)          =SUM(BELOW)       =SUM(BELOW)
    REGION 1                                  10                               (1)                          9
    REGION 2                                  20                               (2)                          18
    REGION 3                                  30                               (7)                          23
    REGION 4                                  40                               (0)                          40
    I have a "Data Display" area that has the following formulas in it:
    CRITERIA                                   GAIN                           LOSS                    NET
    [USER INPUT]                           =VLOOKUP([USER INPUT],[TABLE ABOVE],0,[2,3,4 FOR EACH COLUMN])
    If the user enters 'REGION 1', 'REGION 2', 'REGION 4, or 'REGION 4', the data is displayed in the column chart perfectly. However, if the user selects 'ALL', the process doesn't work and displays 0s in each of the columns above.
    Does any one have any ideas on how to fix that issue or what could be causing it in the first place? I just noticed that the same thing occurs if I use a Grid component as well...even though Excel is processing the data accurately.
    Thanks in advance,
    Erik

    Post Author: debdeb
    CA Forum: Xcelsius and Live Office
    Hi,
    Without trying out your actual data, the first thing that comes to mind is that you aren't using all the options in VLOOKUP. I've discovered that Xcelsius requires all arguments even optional ones in many formulas but this isn't document). The last argument is TRUE (default) for the closest match, and FALSE for exact match. If the user can only enter from a set of values which are known to be in your lookup table, then either one will work but you should still specify this last argument.

  • UI issue with Column Chart

    Hi all.. Am working with Column chart, and am having uneven data with which i need to come out with coumn chart.
    code is give below..
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the ColumnChart and BarChart controls. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:custom="components.*">
        <mx:Script>
            <![CDATA[         
            import mx.collections.ArrayCollection;
            [Bindable]
            private var medalsAC:ArrayCollection = new ArrayCollection( [
                { Country: "USA", Gold: 35},
                { Country: "China", Silver:17},
                { Country: "Russia", Bronze: 14} ]);
            ]]>
        </mx:Script>
        <!-- Define custom colors for use as fills. -->
        <mx:SolidColor id="sc1" color="yellow" alpha=".8"/>
        <mx:SolidColor id="sc2" color="0xCCCCCC" alpha=".6"/>
        <mx:SolidColor id="sc3" color="0xFFCC66" alpha=".6"/>
        <!-- Define custom Strokes for the columns. -->
        <mx:Stroke id="s1" color="yellow" weight="2"/>
        <mx:Stroke id="s2" color="0xCCCCCC" weight="2"/>
        <mx:Stroke id="s3" color="0xFFCC66" weight="2"/>
        <mx:Panel title="ColumnChart and BarChart Controls Example"
            height="100%" width="100%" layout="horizontal">
            <mx:ColumnChart id="column"
                height="100%"
                width="100%"
                paddingLeft="5"
                paddingRight="5"
                showDataTips="true"
                dataProvider="{medalsAC}"
            >               
                <mx:horizontalAxis>
                    <mx:CategoryAxis categoryField="Country"/>
                </mx:horizontalAxis>
                <mx:series>
                     <custom:extended
                        xField="Country"
                        yField="Gold"
                        displayName="Gold"
                        fill="{sc1}"
                        stroke="{s1}"/>
                    <custom:extended
                        xField="Country"
                        yField="Silver"
                        displayName="Silver"
                        fill="{sc2}"
                        stroke="{s2}"/>
                   <custom:extended
                        xField="Country"
                        yField="Bronze"
                        displayName="Bronze"
                        fill="{sc3}"
                        stroke="{s3}"/>
                </mx:series>
            </mx:ColumnChart>
            <mx:Legend dataProvider="{column}"/>
        </mx:Panel>
    </mx:Application>
    as per code... its showing graph as
    If u notice the chart in each series, as there no proper data.. its showing that empty gap as per the order of column series created..
    In array collection, in each object we are missing some value.
    Any idea ow to remove this gap.. How to remove those empty spaces....
    Thanks & Regards
    Pratap

    Hi ramesh,
    check out my edited version of Chandrashekhar Mahajan's fiddle
    http://jsbin.com/jetoz/1/edit
    Chandra was trying to create a new Dialog everytime which i've modified & chart inside a popup is a known issue which has been mentioned by SAP UI5 in Notes section. You can do a workaround by manually rerender() or setTimeout()
    Regards
    Sakthivel

  • Column Chart Colour issue!

    Hi All
    1.  I am using the column Chart...But my Series count color is not changing..it is coming in default color as green..I have done all the color settings..
    2.How to display chart with negative values???
    Anyone has faced such issues & any solution for this..
    Thanks
    BI Learner

    Hi All
    Alast I resolved the color issue...Due to exceptions it was not dispplaying..
    I think even for negative value, we can set the MIN value with -ve value...
    Hope resolved it on my own...
    Thanks
    BI Learner

  • 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

  • Column chart labeling issues

    Hi
    Im trying put a label on top of each column chart bar vertically(Outside),
    Im able to do it if it is a single column .
    with "showlabelvertically" option but,
    when i tried with multiple columns(column set) im not able to do it. do any one have a better idea in doing it.
    Thanks in advance

    hi rootsounds,
    Thanks for responding, But i require is some thing like this app
    http://blog.flexexamples.com/2008/01/23/displaying-the-labels-vertically-in-flex-columncha rt-control/
    for column sets this doesnt work for some other examples that i worked too.

  • Background Element Size issue in Column Chart

    Hi All,
    I am trying to add multiple chart to hbox dynamically with each chart having vbox as an background element and only first and last chart is having axis.
    for example shown in below image three column chart are getting added out of which second chart dosn't contain either axis on left or right.
    I am facing a problem in making background element of same size means there should not be size difference as shown below:
    How can i make all the vboxes that i have used of same size ?
    Thanks in advance.

    Spacing is done based on the number of columns in the chart. It is better to use one chart and group the data accordingly. It is possible to add multiple axis for a chart

  • Help Creating Dynamic Stacked Column Chart with Multiple Criteria

    Hi all. Im new here and hoping you can help.  I have a dashboard Im trying to rebuild from scratch (our computer had a meltdown and we lost all our files). I did not build the dashboard initially so Im trying to recreate it from the flash file we were able to recover. I have come across a chart that I just cannot figure out how to do.  I can figure out how to write an array in the Excel sheet that pulls the data into a table the way I need it to be but found out after I wrote that that Xcelcius doesn't support arrays so all my data disappears when I go into preview mode (which is especially frustrating since I can see the chart working fine in design mode).  Anyway this is what the data table looks like
    Month         Year            Company      Positive #          Negative #         Neutral #          Positive %       Negative %      Neutral %
    October      2011            CompanyA      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyB      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyC      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyD      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyA      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyB      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyC      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyD      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyA      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyB      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyC      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyD      1234                1234                 1234                 10                    10                    10
    The original chart was built so that you would choose the month from a combo box and then the company names would show up along the X axis with their % amounts shown in the stacked column.  I know how to make a combo box work and I know how to make a stacked column chart work with static data.  I cannot for the life of me figure out how to get it to work so that when you choose the month from the combo box it filters the data.  I've tried filtered rows but I'm just missing some information that makes it work and I can't figure out what that information is.  It has to be able to get the month/year combo from the combo box and then go to the table, filter it by month and year and then create a multi-row table of data with just the company and the percent values.  Any help would be greatly appreciated!

    Which connection you are using?
    IF quite difficult if you are working under static data.

  • Multi-column BITMAP index vs. multiple BITMAP indices?

    Given the table (simple, made-up example):
    CREATE TABLE applicant_diversity_info (
    applicant_diversity_id NUMBER(12), PRIMARY KEY(applicant_diversity_id),
    apply_date DATE,
    ssn_salted_md5 RAW(16),
    gender CHAR(1), CHECK ( (gender IS NULL OR gender IN ('M','F')) ),
    racial_continent VARCHAR2(30), CHECK ( (racial_continent IS NULL
    OR racial_continent IN ('Europe','Africa','America','Asia_Pacific')) ),
    ethnic_supergroup VARCHAR2(30), CHECK ( (ethnic_supergroup IS NULL OR ethnic_supergroup IN ('Latin American','Other')) ),
    hire_salary NUMBER(11,2),
    hire_month DATE,
    termination_salary NUMBER(11,2),
    termination_month DATE,
    termination_cause VARCHAR2(30), CHECK ( (termination_cause IS NULL
    OR termination_cause IN ('Resigned','Leave of Absence','Laid Off','Performance','Cause')) )
    Oracle (syntactically) allows me to create either one BITMAP index over all four small-cardinality columns
    CREATE BITMAP INDEX applicant_diversity_diversity_idx ON applicant_diversity_info (
    gender, racial_continent, ethnic_supergroup, termination_reason );
    or four independent indexes
    CREATE BITMAP INDEX applicant_diversity_gender_idx ON applicant_diversity_info ( gender );
    CREATE BITMAP INDEX applicant_diversity_race_idx ON applicant_diversity_info ( raceial_continent );
    etc.
    What is the difference between the two approaches; is there any meaningful difference in disk-space between the one multi-colum index and the four single-column indexes? Does it make a difference in what the query-planner will consider?
    And, if I define one multi-column BITMAP index, does the order of columns matter?

    >
    What is the difference between the two approaches; is there any meaningful difference in disk-space between the one multi-colum index and the four single-column indexes? Does it make a difference in what the query-planner will consider?
    And, if I define one multi-column BITMAP index, does the order of columns matter?
    >
    You may want to read this two-part blog, that answers that exact question, by recognized expert Richard Foote
    http://richardfoote.wordpress.com/2010/05/06/concatenated-bitmap-indexes-part-i-two-of-us/
    http://richardfoote.wordpress.com/2010/05/12/concatenated-bitmap-indexes-part-ii-everybodys-got-to-learn-sometime/
    As with many things Oracle the answer is 'it depends'.
    In short the same considerations apply for a concatenated index whether it is bitmap or b-tree: 1) will the leading column usually be in the predicate and 2) will most or all of the index columns be specified in the queries.
    Here are some quotes from part 1
    >
    Many of the same issues and factors in deciding to create a single, multi-column index vs. several, single column indexes apply to Bitmap indexes as they do with B-Tree indexes, although there are a number of key differences to consider as well.
    Another thing to note regarding a concatenated Bitmap index is that the potential number of index entries is a product of distinct combinations of data of the indexed columns.
    A concatenated Bitmap index can potentially use less or more space than corresponding single column indexes, it depends on the number of index entries that are derived and the distribution of the data with the table.
    >
    Here is the lead quote from part 2
    >
    The issues regarding whether to go for single column indexes vs. concatenated indexes are similar for Bitmap indexes as they are for B-Tree indexes.
    It’s generally more efficient to access a concatenated index as it’s only the one index with less processing and less throwaway rowids/rows to contend with. However it’s more flexible to have single column indexes, especially for Bitmap indexes that are kinda designed to be used concurrently, as concatenated indexes are heavily dependant on the leading column being known in queries.

  • How Can I get multi column values from dynamic search help?

    Hi Gurus;
    I'm using dynamic search help in my program.
    I want to get multi column values from search help. But I dont know solution for this issue.
    I'm using F4IF_INT_TABLE_VALUE_REQUEST FM.
    How Can I get multi column values from dynamic search help?
    Thanks.

    Believe it or not, the same FM worked for me in a dynpro. I will try to explain here how it works in custom screen and then you can do your work for other screens or program types. I am not going to write my actual work but will explain in general.
    I have 4 fields (FLD1, FLD2, FLD3, FLD4) and i made the search based on FLD2 and when user click on a line (could be any field), then this would bring the line on to the screens.
    There are like 3 steps.
    You have your value_tab for my fields FLD1, FLD2, FLD3 and FLD4. This is just the data that we pass into the FM. (data: IT_VALTAB type table of ZVAL_TABLE)
    Next map the screen fields into an internal table (data: It_dynpfld type table of dselc ). I also have other internal tables defined  (just to keep it straight, i will be putting here) data:  It_return type standard table of ddshretval.
    Next step is to call the function module. Make sure you have values in IT_VALTAB.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
            retfield        = 'FLD2'
            value_org       = 'S'
          tables
            value_tab       = It_VALTAB
            return_tab      = It_return
            dynpfld_mapping = It_dynpfld
          exceptions
            parameter_error = 1
            no_values_found = 2
            others          = 3.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        else.
          perform get_selected_fields tables It_return.
        endif.
    The code within the perform GET_SELECTED_FIELDS  - We need to map the result fields after user selects it. The code goes like this. This is step is to update the dynpro fields.
    I need a internal table as well as a work area here. like,
    data: lt_fields type table of dynpread,
            la_fields type dynpread.
      field-symbols: <fs_return> type ddshretval.
    so fill out LT_FIELDS from the IT_RETURN table
    loop at lt_return assigning <fs_return>.
        la_fields-fieldname = <fs_return>-retfield.
        la_fields-fieldvalue = <fs_return>-fieldval.
        append la_fields to lt_fields.
        clear: la_fields.
      endloop.
    Call the FM to update the dynpro
    call function 'DYNP_VALUES_UPDATE'
        exporting
          dyname               = sy-repid
          dynumb               = '1002' "This is my screen number. You could use 1000 for selection screen (hope so)
        tables
          dynpfields           = lt_fields
        exceptions
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          undefind_error       = 7
          others               = 8.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    good luck

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • Overlapping data when more data column chart SSRS

    Hi guys,
    In my ssrs report the column chart  display is not good when more number of datas are viewed.How to overcum this issue
    I searched more on this issue no good solution found.
    I attached screenshot for this report,
    any suggestions pls
    Thanks,
    R.B

    Hi R.B,
    I can reproduce the issue in my local environment. If there are more column data with adjacent values in the chart, the label will be overlapped due to the insufficient space. In this scenario, there are several properties you can use to try to get the labels
    to fit better. Click the data point to open the Properties Windows, then go to the SmartLabels node.
    Expand the "NoMoveDirections" node. This will give us a lot of directions that we can use to restrict the directions that the labels can move in. We can try to change directions to see if it helps.
    Try to enlarge the chart size and use the method below to adjust the column size, it will free up more space to contain the label.
    http://www.bidn.com/blogs/ChrisAlbrektson/bidn-blog/1832/ssrs-adjust-bar-chart-width
    If we want to remove the black arrow, we can refer to the following thread:
    http://social.technet.microsoft.com/Forums/en-US/e3019086-4f72-4898-ba86-2e7c97c8fae4/ssrs-series-lable-overlaping-issue?forum=sqlreportingservices
    Alternatively, we can use Tooltip property to instead of actually displaying. Type the same expression with Value field in the Tooltip property.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Credit Card number disappears

    We have an odd situation for one of our customer The sales user1 enter the sales order and enter the credit card number under the customer Payment terms. When the user2 copies to an Invoice and drill down to the BP Payment terms the card number disap

  • 22' Cinema (ADC) Dead?????

    I have a 22' Cinema display with the ADC port. It worked fine and then I disconnected it. I attached my 20 inch ADC and used it for a while. It worked fine. The problem is now when I attempt to use the 22" it won't come on. When connected to the comp

  • Change Report Title

    Hello Guys, I have an editable ALV in which the user is able to change the entries by clicking a Change Button. For this purpose i have used the class <b>cl_gui_alv_grid</b>. I need to change the Report Title from 'Display Report' & 'Change Report' w

  • Can we use oracle database Instead of Cloudspace?

              hi there,Can we use oracle database instead of Cloudspace with the current implementation?           If possible can you please send me the example           1.ra.xml           2.weblogic-ra.xml           files for connection to oracle. i w

  • Saving a completed form

    I've created a PDF form, but when my customer completes the form, he is unable to save it. There is a message that he cannot save the form with data in it; he can only print it. He's running Reader 8. Can you tell me if there's a setting that I need