Flash 2D Column not grouping data points

I am trying to use a Flash column chart to display 3 data columns (Planned, Scheduled, Completed) by Month. It works fine as a stacked bar, but when I try to do it as a bar, expecting to see the 3 columns for each month of my schedule, I have problems. Instead of seeing 3 columns for each month, it tries to display 21 columns (3 columns * 7 months) for each month. If I choose to "Show Legend", I get the 3 column titles displayed 7 times for a total of 21 Legend items. I went to the AnyChart website and found documentation. However, it has not helped me. Everything in the documentation relates to XML settings. I tried using custom XML and including the XML settings that the documentation said was necessary to group the numbers by series, but it didn't help. Is there no documentation for the APEX implementation of AnyChart?
Here is the code for one of the series: select null as link, 'March',
(select(select sum(w2.TMW_TARGET_PAYORS)
  from tulsa_migration_weeks w2
  where to_char(w2.tmw_week_begin, 'mm')= '03')-
(select count(x.payor_xref_tul_int_bundle_id) 
from payor_xref x join
        tulsa_int_sol_bundles b2 on
           x.PAYOR_XREF_TUL_INT_BUNDLE_ID =
           B2.TULSA_INT_BUNDLE_ID
where X.PAYOR_XREF_TUL_INT_BUNDLE_ID is not null
       and b2.tulsa_int_bundle_target_date is not null
       and to_char(b2.tulsa_int_bundle_target_date, 'mm') = '03')-
(select count(x.payor_xref_tul_int_bundle_id)
  from payor_xref x join
        tulsa_int_sol_bundles b2 on
           x.PAYOR_XREF_TUL_INT_BUNDLE_ID =
           B2.TULSA_INT_BUNDLE_ID
where X.PAYOR_XREF_TUL_INT_BUNDLE_ID is not null
       and b2.tulsa_int_bundle_comp_date is not null
       and to_char(b2.tulsa_int_bundle_comp_date, 'mm') = '03'
from dual) as "Planned",
((select count(x.payor_xref_tul_int_bundle_id) 
from payor_xref x join
        tulsa_int_sol_bundles b2 on
           x.PAYOR_XREF_TUL_INT_BUNDLE_ID =
           B2.TULSA_INT_BUNDLE_ID
where X.PAYOR_XREF_TUL_INT_BUNDLE_ID is not null
       and b2.tulsa_int_bundle_target_date is not null
       and to_char(b2.tulsa_int_bundle_target_date, 'mm') = '03')-
(select count(x.payor_xref_tul_int_bundle_id)
  from payor_xref x join
        tulsa_int_sol_bundles b2 on
           x.PAYOR_XREF_TUL_INT_BUNDLE_ID =
           B2.TULSA_INT_BUNDLE_ID
where X.PAYOR_XREF_TUL_INT_BUNDLE_ID is not null
       and b2.tulsa_int_bundle_comp_date is not null
       and to_char(b2.tulsa_int_bundle_comp_date, 'mm') = '03'
) as "Sched-Not Compl",
(select count(x.payor_xref_tul_int_bundle_id)
  from payor_xref x join
        tulsa_int_sol_bundles b2 on
           x.PAYOR_XREF_TUL_INT_BUNDLE_ID =
           B2.TULSA_INT_BUNDLE_ID
where X.PAYOR_XREF_TUL_INT_BUNDLE_ID is not null
       and b2.tulsa_int_bundle_comp_date is not null
       and to_char(b2.tulsa_int_bundle_comp_date, 'mm') = '03'
) as "Completed"
from dualThe custom XML I have tried looks like this... <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
<root>
  <type>
    <chart type="3DColumn" plot_type="CategorizedBySeriesVertical">
      <animation enabled="yes" appearance="size" speed="10"  />
      <data_plot_settings default_series_type="Bar">
- <bar_series>
- <!--  Enabling data-labels and format them as categories names as we want to show managers' names 
  -->
- <label_settings enabled="true">
  <position anchor="XAxis" />
  <format>{%CategoryName}</format>
  <background enabled="false" />
  <font bold="False" />
  </label_settings>
  <tooltip_settings enabled="True" />
  </bar_series>
  </data_plot_settings>
      <hints auto_size="yes">
        <text><![CDATA[{NAME}, {VALUE}]]></text>
        <font type="Verdana" size="10" color="0x000000" />
      </hints>
      <names show="no"/>
      <values show="no" prefix="" postfix="" decimal_separator="." thousand_separator="," decimal_places="0" />
      <arguments show="no" />
      <column_chart column_space="3" block_space="12">
        <border enabled="no" />
        <block_names enabled="yes" placement="chart" position="bottom" >
          <font type="Verdana" size="10" color="0x000000" />
        </block_names>
      </column_chart>
    </chart>
    <workspace>
      <background enabled="yes" type="gradient" gradient_type="linear">
        <colors>
          <color>0x6699FF</color>
          <color>0xFFFFFF</color>
        </colors>
        <alphas>
          <alpha>100</alpha>
          <alpha>100</alpha>
        </alphas>
        <ratios>
          <ratio>0</ratio>
          <ratio>0xFF</ratio>
        </ratios>
        <matrix r=".785385"/>
      </background>
      <base_area enabled="no" />
      <chart_area enabled="yes" x="80" y="50" width="580" height="230" deep="0">
        <background enabled="no"/>
        <border enabled="yes" size="1"/>
      </chart_area>
      <x_axis name="Month" smart="yes" position="center_bottom" >
        <font type="Verdana" size="14" color="0x000000" bold="no" align="center" />
      </x_axis>
      <y_axis name="Migrations" smart="yes" position="left_center" >
        <font type="Verdana" size="14" color="0x000000" bold="no" align="center" />
      </y_axis>
      <grid>
        <values />
      </grid>
    </workspace>
    <legend enabled="yes" x="680" y="50">
      <names enabled="yes">
        <font type="Verdana" size="10" color="0x000000" />
      </names>
      <values enabled="no"/>
      <scroller enabled="no"/>
      <header enabled="no"/>
      <background alpha="0"/>
    </legend>
  </type>
  #DATA#
</root>Any help anyone can provide would be greatly appreciated!
Dale

Hi Anton,
I mailed the details ([email protected]) requested from you . Pls help me
in getting this issue resolved .
The two queries when run seperately giving proper values and the chart is working fine but when I want to combine this two queries by adding one series for the second query I am having issues in displaying the columns properly .

Similar Messages

  • SSRS 2008 Column Chart with Calculated Series (moving average) "formula error - there are not enough data points for the period" error

    I have a simple column chart grouping on 1 value on the category axis.  For simplicity's sake, we are plotting $ amounts grouping by Month on the category axis.  I right click on the data series and choose "Add calculated series...".  I choose moving average.  I want to move the average over at least 2 periods.
    When I run the report, I get the error "Formula error - there are not enough data points for the period".  The way the report is, I never have a guaranteed number of categories (there could be one or there could be 5).  When there is 2 or more, the chart renders fine, however, when there is only 1 value, instead of suppressing the moving average line, I get that error and the chart shows nothing.
    I don't think this is entirely acceptable for our end users.  At a minimum, I would think the moving average line would be suppressed instead of hiding the entire chart.  Does anyone know of any workarounds or do I have to enter another ms. connect bug/design consideration.
    Thank you,
    Dan

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

  • Health app not graphing data points.

    I have been playing around with the new Health app recently. I do not use any third party apps for Health, but I am running iOS 8.0.2 anyway. So far, I have plotted 4 points on the sleep monitor, for example. I can press Show All Data to see the individual sleep and wake times I inputted, but they are not showing up graphically as the data "Points" that I wanted to add. Instead, the graph (which I added to Dashboard) just says No Data.

    I have the identical problem with the Walking/Running Distance App in Health.  If I manually enter that I walked 1.75 miles it is 50/50 whether that shows up on the graph.  This makes the walking distance data useless if one doesn't want to wear the iPhone while walking.

  • Not enough data points out of hokuyo lidar on robotics simulator

    Hi,
    We've been using the hokuyo URG series lidar in the robotics simulator but we can't get more than 29 data points out of it. We get hundreds when running the sensor in real life. Is there a way to increase the number of data points read in the simulator? It is too low to be useful at the moment.
    thanks.
    (Using Labview Robotics 2012)

    I believe the default scan angle for the simulated Hokuyo lidar sensor is 5 degrees.  With max and min angles of +-70 degrees, this explains why you're seeing 29 data points.  You can change these settings in the Simulator wizard.  Right-click the simulation target in the project, and select Properties.  In the wizard, select the Hokuyo sensor in the tree, and scroll down to change the "Max Angle", "Min Angle", and/or "Scan Angle" parameters.

  • Chart - Reading series value but not from data point

    Hi All,
    I have a single line series on my chart, values on Y axis,
    hours along X. I have values for each hour of the day for 24 hours,
    e.g. 25 data points.
    First value is say 200 at 0000 UTC
    Next value is say 300 at 0100 UTC
    Next value is say 900 at 0200 UTC
    etc. etc.
    Now I have this chart loaded, on screen etc. How would I then
    find out what the value of the series is when the time (X axis) is
    0130 UTC, or 0115 UTC etc. etc.
    I.e. I want to be able to say at any time on the X axis, give
    me the Y value of the line on chart.
    Any pointers gratefully received.
    Cheers
    Ian

    I wouldn't go reading some external app's (proprietary-format) config file - you're just setting yourself up for a fragile app if that other app ever changes the layout of that file.

  • How to remove values data points from Apex3 Flash Chart

    Hi
    I am using a Apex 3.2 and I have to put Flash Charts in my application. But since the charts have are smaller in size, I do not want to have the data points coming up in the chart. I have planned to show them using hints. But unfortunately, I am not able to hide the Data Points. Can you please help. Thanks Sahcin. Here is my custom XML.
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <root>
         <type>
              <chart type="Stacked Horizontal 2DColumn">
                   <animation enabled="no"/>
                   <hints enabled='yes' auto_size='no' width='200' height='20' horizontal_position='left' vertical_position='top'>
                        <text><![CDATA[{NAME}, {VALUE}]]></text>
                        <font type="Verdana" size="10" color="black"/>
                        <background color="0xF4F4F4"/>
                   </hints>
                   <arguments show="no"/>
                   <names show='yes' position='top'/>
                   <values show="no" prefix="$" postfix="" decimal_separator="." thousand_separator=',' decimal_places="2"/>
                   <column_chart column_space='20' block_space='20' left_space='0' right_space='0' up_space='0' down_space='0' round_radius='0'>
                        <border enabled="no"/>
                        <block_names enabled="yes" placement="chart" rotation="45" x_offset="0" position="left">
                             <font type="verdana_embed_tf" size="8" color="0x000000"/>
                        </block_names>
                        <background type="gradient" gradient_type="linear">
                             <alphas>
                                  <alpha>100</alpha>
                                  <alpha>100</alpha>
                                  <alpha>100</alpha>
                             </alphas>
                             <ratios>
                                  <ratio>0</ratio>
                                  <ratio>120</ratio>
                                  <ratio>0xFF</ratio>
                             </ratios>
                        </background>
                   </column_chart>
              </chart>
              <workspace>
                   <background enabled="yes" type="solid" color="0xF4F4F4" alpha="0"/>
                   <base_area enabled="no"/>
                   <chart_area enabled="yes" x="100" y="50" width="600" height="300" deep="0">
                        <background enabled="yes" type="solid" color="0xCCFF99"/>
                        <border enabled="yes" size="1"/>
                   </chart_area>
                   <x_axis name="Region" smart="yes" position="left_center">
                        <font type="Verdana" size="10" color="0x000000" bold="no" align="center"/>
                   </x_axis>
                   <y_axis name="Booking Amount (kUSD)" smart="yes" position="center_bottom">
                        <font type="Verdana" size="10" color="0x000000" bold="no" align="center"/>
                   </y_axis>
                   <grid>
                        <values>
                             <lines size='1' color='0x15771A' alpha='100'/>
                        </values>
                   </grid>
              </workspace>
              <legend enabled="yes" x="0" y="0" rows="2" rows_auto_count="no">
                   <names width='80' enabled='yes'/>
              </legend>
         </type>
         #DATA#
    </root>Edited by: user779712 on Nov 3, 2009 4:45 PM
    Edited by: user779712 on Nov 3, 2009 4:46 PM

    Well going in point by point and deleting is certainly one way of going about it. Of course that would defeat the entire purpose of having this great programming enviroment that is capable of doing that kind of thing for us.
    Is your text file small enough to upload? Obviously you know what the criteria are for judging whether or not a data point is acceptable so it should be simple enough to program. Give us a bit more information and I can assure you there will be a race between LabVIEW experts to see who can post the cleanest, simplest, and fastest piece of code that will do what you need. My wager is on altenbach, but there are a few others here that are almost as impressive.

  • How to remove noisy data points read from a text file

    Reading data measurements taken in from a txt file.  How do I get rid of noise aside from going into the text file and deciding point by point what to delete.

    Well going in point by point and deleting is certainly one way of going about it. Of course that would defeat the entire purpose of having this great programming enviroment that is capable of doing that kind of thing for us.
    Is your text file small enough to upload? Obviously you know what the criteria are for judging whether or not a data point is acceptable so it should be simple enough to program. Give us a bit more information and I can assure you there will be a race between LabVIEW experts to see who can post the cleanest, simplest, and fastest piece of code that will do what you need. My wager is on altenbach, but there are a few others here that are almost as impressive.

  • Business Graphics : co-ordinate Category Axis & Data Points

    Hello Experts,
    I have a Category axis with 30 Descriptions and Data points (Series) with 29 Points. How to place Category axis with respect to the data points? Right now, the data points are plotted without considering the category values.
    Please suggest ASAP
    nikhil

    Hi Nikhil,
    I'm little confused here - do you mean to say that you do not have data point for one category description ?
    Refer https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3261cd90-0201-0010-268c-d8d72e358af6 (might be helpful).
    Kind Regards,
    Nitin
    PS: Also go thru init code under 'Supplying the Context with Data' section.
    Edited by: Nitin Jain on Apr 3, 2009 8:46 PM

  • Showing Grouped Data /Hierarical in AdvancedDataGrid.

    Hi ,
    I am using AdvancedDataGrid, I want to show only two columns as grouped data.
    Say, I have Grid having columns for Employees Details.
    My Coulmns are: Employee Id,Employee Name, Department ,Project Name & Project Description.
    and one Employee could be working in different projects.
    I want to show data on my grid with deatils of employee hierarically in one row & all the details of projects he/she is working in.
    How could I do that?
    TIA

    Hi ,
    I am using AdvancedDataGrid, I want to show only two columns as grouped data.
    Say, I have Grid having columns for Employees Details.
    My Coulmns are: Employee Id,Employee Name, Department ,Project Name & Project Description.
    and one Employee could be working in different projects.
    I want to show data on my grid with deatils of employee hierarically in one row & all the details of projects he/she is working in.
    How could I do that?
    TIA

  • Custom list column not showing up in View Order by or Group by dropdown list

    Hi All,
    I have created a custom list with a custom column called "Description". Some items in the list do not have a description. What I wanted to do is create a view where the items with a description show first, and the items with no description are
    at the bottom of the list. I thought I could make a simple view that uses the Order by or Group by on the description column.
    The problem I am having is the description column doesn't show up in the dropdown list for either Order by or Group by within the custom view. Can someone please tell me why this happens and if there is anything I can do to rectify this problem.
    I hope you can help
    Colin

    Hi,
    I believe the "Description" field type is Multiple Lines of Text. Sorting doesn't allow in this field type. In order to do the sorting, you would require to create additional column like single line of text column (note that it supports only 255
    chars and require to truncate the data if more than 255) and update the data using event receiver or workflow. and do the sorting with that column.
    kmhsad

  • Break Column in Group Above Report - Causing Error in Data Groupings

    Since I'm required to designate at least one Break Column in my Group Above report, I created a dummy column in my SELECT statement. I did this so that I could designate the required minimum of at least one break column, but I designated one that won't have any impact on how the report is ordered, because it will be the same value (NULL) for every record. So, my SELECT statement starts out looking something like this:
    SELECT
    NULL break_column,
    column_1 column1_name,
    column_2 column2_name,
    column_3 column3_name,
    column_4 column4_name,
    column_5 column5_name
    I needed for the break column to have no impact on the ordering of the report because I need for the ORDER BY clause to completely control how the report is sorted, w/o any interference by a hard-coded break column. I need this because my intention is to make the ORDER BY clause dynamic, and a hard-coded break column with actual data would supercede the ORDER BY clause, thereby making it static.
    Everything is working correctly with regard to how the report is sorting the records designated as group columns; however, the detail columns are getting all messed up as far as what main record they're grouped under.
    By this I mean that when I designate only one break column, some details may display under the wrong group, where they're not supposed to. For example, each page consists of demographic info. about a specific record on a table, and the details listed under it should be the individual comments that have been made on that record. The issue I'm seeing is that for some records, it's showing comments from not only the record for that group, but it continues to list out comments made for other requests as well, when those comments should be displayed under their own respective records.
    Why is this happening when I designate only one break column, and how can I keep it from doing this?

    Did you get a solution for this?
    I have the same problem.
    Any help would be appreciated.
    Thanks,
    Madhu

  • Color Highlights not working in bar chart with two data points

    Iu2019m using Crystal Reports 2011.  I have created a bar graph using two data fields in the Chart Expert.  I have set the colors for the bars in the Color Highlights tab, but the colors that I have defined have not been applied to the graph.  
    I have tried changing the colors numerous times and have done it in both design and preview modes.  It seems to be somethign with having two data points because I don't have this problem when using just one data point.  Please help!

    is the colour mode Color by group or color by series

  • Date Column not getting sorted in a table in web Dynpro Java

    Hi All,
    I am facing an issue while sorting the date column in a table in my web dynpro java application.
    When the date is displayed in the sql format in tha table, I am able to sort the date column successfully but when we convert the date field from sql format to util format in our table and then sort it does not work.
    Kindly let us know the steps to be followed in this case to sort the date column of a table in Simple Date format as we do not want date in the sql format to be displayed.
    Thanks & Regards,
    Anurag

    Hi,
    You might want to check whether both your browser's language settings are identical. The browser language could also determine the date format.
    As a workaround, you could add an extra attribute to your context, and set the calculated property to 'true'.
    In your table, add a new column and bind to this new attribute, and hide your original date column
    If you sort using the date column that's hidden now, you could use the calculated field to fixed-format your date the way you prefer (by using the SimpleDateFormatter class for instance)
    Cheers,
    Robin

  • Flash installed and up to date however flash does not run on any web browser

    I was catching up on watching a televsion show and watching it with no issues/no problems with flash before. I went to the website below  and all of a sudden flash is not working. I did not change any settings, run any updates. I checked various browsers, flash content is not working on any of them. I can view youtube videos however just about any other site I've tried, nothing and many websites will not display correctly. I tried some of the troubleshooting suggestions in the forum however some of them I'm unable to do such as alter the flash settings, it takes me to the page but tells me I don't have Flash installed. I've tried switching user accounts on my pc as others have said flash works for them on the other account however mine is still broken. I've actually tried a system restore, still no luck.
    Windows 8 (64 bit)
    Flash Version 11.9.900.152
    Tried web browsers IE, Firefox, Chrome - I've verified it is enabled
    Active X is disabled
    I've ran the 'test' to verify Flash is installed and it displays the video
    I ran the debugger however I do not know how to interpret the data.
    PLEASE HELP!!
    Request Displayed
    #1 - SiteCatalyst Image 1564 chars
    Friendly Third Party Cookies
    om.cbsi.com
    Report Suite ID(s)
    cnetcbscomsite, cbsicbsiall
    Version of Code
    H.25.4
    Query String Beginning
    1
    Sent From JavaScript File?
    1
    Date/Time
    December 8, 2013 at 10:27 PM
    fid=30F75FA127AB1EDA-2ECCBA4ED7B2A80F
    Name Space
    cbsinteractive
    pageName
    cbscom:The Big Bang Theory - The Discovery Dissipation:The Big Bang Theory:The Big Bang Theory Video The Discovery Dissipation CBS com:p1:video:the big bang theory:comedy:primetime
    Current URL
    http://www.cbs.com/shows/big_bang_theory/video/
    channel
    primetime
    prop1
    cbs.com
    eVar1
    D=c1
    prop2
    us
    eVar2
    D=c2
    prop3
    responsive web|||desktop
    eVar3
    D=c3
    prop5
    cnetcbscomsite
    eVar5
    D=c5
    eVar6
    primetime|comedy|the big bang theory|video
    prop7
    D=g
    eVar7
    D=g
    prop8
    The Big Bang Theory Video - The Discovery Dissipation - CBS.com
    eVar8
    D=c8
    prop9
    D=User-Agent
    prop10
    video
    eVar10
    D=c10
    prop11
    primetime:video
    eVar11
    D=c11
    prop12
    6711
    eVar12
    D=c12
    prop13
    19650
    eVar13
    D=c13
    prop20
    The Big Bang Theory Video The Discovery Dissipation CBS com
    eVar20
    D=c20
    prop21
    D=c20
    eVar21
    D=c20
    prop22
    D=c10
    eVar22
    D=c10
    prop30
    cbscom:UqU4QwoZASUAAGHo9yEAAAA5
    eVar30
    D=c30
    eVar49
    ishd
    eVar54
    Less than 1 day
    prop60
    not set
    eVar60
    D=c60
    prop61
    comedy
    eVar61
    D=c61
    prop62
    D=c60
    eVar62
    D=c60
    prop63
    cbscom:10|The Big Bang Theory
    eVar63
    D=c63
    prop64
    cbscom:1933E590-B255-5B32-E778-BF122477716C|The Big Bang Theory - The Discovery Dissipation
    eVar64
    D=c64
    prop65
    7
    eVar65
    D=c65
    prop66
    D=c65
    eVar66
    D=c65
    hier1
    cbscom:primetime|comedy|the big bang theory|video
    Screen Resolution
    1600x900
    Color Depth
    24
    JavaScript Version
    1.6
    JavaScript Enabled
    Y
    Cookies Supported
    Y
    Browser Width
    1600
    Browser Height
    814
    Connection Type
    lan
    Home Page?
    N
    Query String End
    1

    Hi there
    Sorry, but you aren't in the right place for getting help with this. Try clicking the link below and choose a forum dedicated to Adobe Flash.
    Click here
    Best of luck to you in resolving your issue! Rick

  • Not able to save date column with custom date format. in OBIEE 11g

    Hi,
    I have migrated one report from OBIEE 10g to 11g. There is a date column with customized date format(i.e. Default format is 'dd-MMM-yyyy' and I have used 'MMM-yyyy').
    But when I use this custom format and try to save the report in 11g its giving this below error.
    ''Catalog object privilege validation failed for user to path /shared/ALM BI/Finacial Results/History Income Statement Detail.
    You do not currently have sufficient privileges to save a report or dashboard page that contains HTML markup.
    This HTML might be present in column headings, table headings, text views, narrative views, the print header,
    or the print footer and must be removed before saving.''
    Please let me know what changes I need to do for this.
    Regards,
    Ambika Nanda.

    Hi ,
    privilage issues...check the security settings once..
    Thanks,
    Ananth

Maybe you are looking for