Chart builder stacked bar fill style pattern

Does anyone know if chart builder support style pattern in filled area in stacked bar?
i.e. stacked bar is filled with color, I need also to have line style in it plus the color. The line can be horizontal, vertical, or diagonal.
Any help, or anyone knows any library that support color with style color ( free or charged ).

Depending upon your query structure, you can force a zero based centerline by setting the Y-axis ranges dynamically.  I am not working in 11.5.3 currently, but ran into a problem with line charts in 12.0.2.  The zero centerline flag did not work, so I dynamically generated the ranges and linked them in.
You can probably do the same with a little extra BLS coding.
Mike

Similar Messages

  • WAD 7.0 chart type stacked bars

    Hello,
    i have created a chart type "stacked bars", now i have one problem, i would like to create a sum over
    the bar ? How can i do this. i have the sum in my query.
    Thanks in advance
    Detlev

    Hi Detlev,
    you see the sum (result in the query), but not in the chart, is that right?
    If so, it might be, that the web template is cached somewhere (happend to me quite often). So try to delete the cache on the system, where you cannont see the sum. (in ABAP server you can do that in SMICM, in JAVA probably in NWA - but ask basis or portal guys to do that)
    It might be also good idea, to test if it is really "chache problem", to first change some other paramater of the chart (colour or something) to see the actual version (the one, where the sum should be seen) is displayed on web or not.
    Regards
    Pavel

  • Line chart and Stacked Bar Chart

    Hai,
    I am creating report in line chart view.I want to know wheather it is possible to get data of Same column to be populated as different lines.
    And also to get data of Same column to be populated as different stacks in the stacked bar chart .
    Thanks in advance...

    Hello
    You have to just select the column for grouping and the same col for aggregate field plotting. This is standard function, and I think this is straight forward.

  • Sharepoint Chart Webpart - Stacked bar chart

    Hi,
    Could someone explain me how to create a stacked bar chart in sharepoint 2010? I have tried creating the chart and its not populating the values correctly.
    For Ex: 
    Day Of week      Change1   Change2   Change3   Change4
    Saturday               5                  10               4            2
    Sunday                  8                  21              1             23
    Monday                 12
     14     34
       12
    Tuesday        9
      2      12
        1
    With the sample data above, I was checking the graphs in excel and sharepoint 2010, but both are not showing the charts in the same manner. Could someone let me know why is this issues about?
    Any help is greatly appreciated.
    Thanks
    Jithin

    Elninoshed
    If I understand you correctly, you want the chart to display a calculated value and for the chart to take its data from a hidden list that can be filtered.  If this is correct, the answer is yes.
    In the image below, I have created chart based upon the Northwind Traders Products list.  The chart presents products by their total product inventory value, which is equal to: [Units in stock] x [Unit Price].  The chart is connected to a hidden
    list web part that takes its data from the Products list.  To the left of the chart is a List Filter web part, which allows the user to select a category of products to filter the hidden list by.  Filtering the hidden list immediately affects the
    chart that is connect to it.
    Here's a link to an excellent Microsoft Office articles that walks you through how to connect a filter web part to a list.
    Connect a Filter Web Part to a List View Web Part

  • Is there a chart of all the fill-in patterns available, or can it be generated?

    Running PSE9 under Mac OS X 10.6.
    It would be nice if I could give someone a printout and say, "Here.  Take your pick."

    I don't know of a really automated way, but you take a
    screenshot of all the patterns loaded.
    You could open an image then make a pattern fill adjustment layer and load all
    your patterns by using Load patterns from the flyout menu and then navigating
    to the pse9 appliction folder and to Presets>Patterns. You have to repeat until all the
    patterns are loaded, then take a screenshot and print.
    MTSTUNER

  • Stacked Bar Chart

    Hi I would like to create a stacked bar chart in my report.
    It will have 2 dimensions and 1 Measure.
    Dimension 1 = Month
    Dimension 2 = Sales Item
    Measure = Sales_quantity
    I can't find anything in the user guide.
    Is this possible ?

    I am not sure what you understand as a "stacked bar chart" - There is a chart type "stacked bar chart" that we support. So you can have the Month as the x axis and the Sale Item as the different data sets.
    We are using the Oracle BI Beans XML description for our charts. The BI Beans chart builder helps to define the tags - that is stored in the Web Alternate Text of the Image that is included by the chart builder.
    The tag for the graph type is:
    <Graph graphType="BAR_VERT_STACK"/>
    To show 2 dimensions you need to modify the code the following way
    1) Adjust the row count
    <LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'MONTH'))}" rowCount="{count(xdoxslt:group(.//ROW, 'SALESITEM'))}">
    2) Show the labels
    <RowLabels>
    <xsl:for-each-group select=".//ROW" group-by="SALESITEM">
    <Label><xsl:value-of select="./SALESITEM"/></Label>
    </xsl:for-each-group>
    </RowLabels>
    3) Add multiple rows for the SALESITEM in each column (MONTH) in the data section.
    <DataValues>
    <xsl:for-each-group select=".//ROW" group-by="MONTH">
    <RowData>
    <xsl:for-each-group select="current-group()" group-by="SALESITEM">
    <Cell><xsl:value-of select="sum(current-group()/Sales_quantity)"/></Cell>
    </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    The code stehms from an example I did recently for multiple line charts - so I made have some typos in there - from changing hte names. Hope it helps and you get it working.
    We should support the stacked bar charts in the builder, but it is only recently that
    people cared about the charts...
    Good luck,
    Klaus

  • Stacked Bar chart mouseover options

    I am using the stacked bar chart. When mousing over the bars, it currently displays the totals on the very top of the bar. Is there a way to make the total display inside (or at the bottom) of the bar?

    Hi HCMJ,
    By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
    Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
    Create a dataset with the query below (sample data):
    CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
    INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
    SELECT * FROM  #temp
    Insert time field to Category Groups pane, and change the group name to “time”.
    Insert value field to Values pane, then change the value to like below:
    =min(Fields!value.Value,"time")
    Insert another field with the following expression to Values pane:
    =max(Fields!value.Value,"time")
    Change the type of chart from Stacked Bar Chart to Range Bar Chart.
    Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
    Preview it and get the following result:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Stacked bar chart errors

    I am creating a stacked bar chart and put a max row count of 50, but the graph actually shows more than 50. After the 50 data points, all of the rest of the dates along the x axis are out of order. Is there another location i also need to enforce this max row count?

    Hi HCMJ,
    By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
    Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
    Create a dataset with the query below (sample data):
    CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
    INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
    SELECT * FROM  #temp
    Insert time field to Category Groups pane, and change the group name to “time”.
    Insert value field to Values pane, then change the value to like below:
    =min(Fields!value.Value,"time")
    Insert another field with the following expression to Values pane:
    =max(Fields!value.Value,"time")
    Change the type of chart from Stacked Bar Chart to Range Bar Chart.
    Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
    Preview it and get the following result:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Stacked Bar chart does not overlap series

    I have a stacked bar chart with to values "Invoiced" and "Budget" and 2 categories YEAR and MONTH - the problem is that the bar chart shows the values Invoiced and Budget in Top of each other and Not overlapping each other . ex:
    NOW:  Invoiced =  200   Budget = 300   - Bar chart shows a column of 500 for the month (NOT correct)
    What I want is to show 1 column for each month where up to 200 the colour is green and from 200 to 300 the colour is blue for example....
    How to achieve this ?

    Hi HCMJ,
    By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
    Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
    Create a dataset with the query below (sample data):
    CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
    INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
    SELECT * FROM  #temp
    Insert time field to Category Groups pane, and change the group name to “time”.
    Insert value field to Values pane, then change the value to like below:
    =min(Fields!value.Value,"time")
    Insert another field with the following expression to Values pane:
    =max(Fields!value.Value,"time")
    Change the type of chart from Stacked Bar Chart to Range Bar Chart.
    Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
    Preview it and get the following result:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • BAM-Stacked bar chart

    hi,
    how to set Stacked bar chart horizontally instead of vertically(by default).

    Hi HCMJ,
    By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
    Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
    Create a dataset with the query below (sample data):
    CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
    INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
    SELECT * FROM  #temp
    Insert time field to Category Groups pane, and change the group name to “time”.
    Insert value field to Values pane, then change the value to like below:
    =min(Fields!value.Value,"time")
    Insert another field with the following expression to Values pane:
    =max(Fields!value.Value,"time")
    Change the type of chart from Stacked Bar Chart to Range Bar Chart.
    Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
    Preview it and get the following result:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Chart "Stacked bars" - clustered available ?

    Hi,
    as anymore developed a chart with stacked bars, which are clustered ?
    Development team: when will/might we have this available in APEX?
    TIA
    Bernhard

    Mike,
    thanks - I am aware of the stacked barcharts - the question is, if this type is available in a clustered manner as well ?
    I so far cud only see either "stacked barcharts" or "clustered barcharts" - but not "clustered , stacked barcharts" which wud be series of stacked barcharts ...
    TIA
    Bernhard

  • Normal/stacked bar chart problem

    hi,
    i have created a bar chart which has 2 bars for each customer. (the customer is on the x-axis). how i did this, is i created two formulas and placed them in the 'show value(s)' box in the chart expert.
    however, what i want to do is to have one bar for each customer subdivide. If i change the type of chart to 'stacked bar chart' each customer has one bar and that bar is subdivided. But I want each customer to have 2 bar (which i have at present) and want one of those two bars to be subdivided.
    How would i go about doing this? (if it can even be done(?) )
    thanks
    J

    Here's my result with six values in a single series. I double clicked the last bar to change its colour from the default grey (which was visible) to magenta.
    Numbers 2.0.3, iBook G4, OS X v10.4.11
    (Shot in the dark:) Try double clicking the value label, then changing the order position of this item.
    Regards,
    Barry

  • Chart builder finish but some threads are still alive ?!?!?!?

    Hello all,
    I'm using oracle chart builder for presenting data in my
    application. I use it after supplying its data for gif file
    generation. The chart is stacked bar but I don't think this is the
    problem.
    The problem is that it generates the gif file successfully but my
    application is still running after the main method is finished, I
    debugged it and I found about three threads are up:
    Thread[AWT-EventQueue-0]
    Thread[SunToolkit.PostEventQueue-0]
    Thread[AWT-Windows]
    I doubted my code - but I'm taking it copy paste from developer's
    guide - and I debugged another Java file from a sample that comes with
    the kit and the same problem happened ?!?!?
    Does anyone know y?
    I saw lots of SunToolkit.PostEventQueue-0 & AWT-EventQueue-0 problems, but I don't find matching my situation, nearly some mentioned problem in native threads or something, but I think the problem is related to AWT more
    I used in testing both Oracle JDeveloper 9i release 3, and IBM
    WebSphere Studio Application Developer 4.0.3 ( both JDK 1.3)
    Thankx

    I used ctrl-break to display all threads working and the following was printed:
    "Thread-6" prio=5 tid=0x2349f8 nid=0x9e0 waiting on monitor [0..0x6fb38]
    "AWT-Windows" prio=5 tid=0x8a07e50 nid=0x894 runnable [0xba9f000..0xba9fdc4]
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    "SunToolkit.PostEventQueue-0" prio=5 tid=0x8a07878 nid=0x88 waiting on monitor [
    0xba5f000..0xba5fdc4]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Unknown Source)
    at sun.awt.PostEventQueue.run(Unknown Source)
    "AWT-EventQueue-0" prio=7 tid=0x8acbe30 nid=0x980 waiting on monitor [0xba1f000.
    .0xba1fdc4]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Unknown Source)
    at java.awt.EventQueue.getNextEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    "Thread-4" daemon prio=5 tid=0x8ad6be8 nid=0x90c waiting on monitor [0x99bf000..
    0x99bfdc4]
    at java.lang.Thread.sleep(Native Method)
    at org.apache.log4j.helpers.FileWatchdog.run(FileWatchdog.java:95)
    "Thread-3" daemon prio=5 tid=0x8ad6aa0 nid=0x8c0 waiting on monitor [0x8f5f000..
    0x8f5fdc4]
    at java.lang.Thread.sleep(Native Method)
    at org.apache.log4j.helpers.FileWatchdog.run(FileWatchdog.java:95)
    "Thread-2" daemon prio=5 tid=0x8a37008 nid=0x900 waiting on monitor [0x8f1f000..
    0x8f1fdc4]
    at java.lang.Thread.sleep(Native Method)
    at org.apache.log4j.helpers.FileWatchdog.run(FileWatchdog.java:95)
    "Thread-1" daemon prio=5 tid=0x8b63c0 nid=0x948 waiting on monitor [0x8edf000..0
    x8edfdc4]
    at java.lang.Thread.sleep(Native Method)
    at org.apache.log4j.helpers.FileWatchdog.run(FileWatchdog.java:95)
    "Thread-0" daemon prio=5 tid=0x8b64a8 nid=0x9c0 waiting on monitor [0x8e7f000..0
    x8e7fdc4]
    at java.lang.Thread.sleep(Native Method)
    at org.apache.log4j.helpers.FileWatchdog.run(FileWatchdog.java:95)
    "Signal Dispatcher" daemon prio=10 tid=0x7fdf28 nid=0x72c waiting on monitor [0.
    .0]
    "Finalizer" daemon prio=9 tid=0x7fabb8 nid=0x560 waiting on monitor [0x8c5f000..
    0x8c5fdc4]
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    at java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
    "Reference Handler" daemon prio=10 tid=0x7f9368 nid=0x9a8 waiting on monitor [0x
    8c1f000..0x8c1fdc4]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Unknown Source)
    at java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
    "VM Thread" prio=5 tid=0x23f638 nid=0xa28 runnable
    "VM Periodic Task Thread" prio=10 tid=0x8a4f48 nid=0x92c waiting on monitor

  • Stacked bars with "stairs" in WAD

    Hi everybody,
    I've got a special problem in Web Applications Designer. I know how to build a chart (type: stacked bars). But is it possible to get these bars displayed like stairs?
    It should look like this:
    <--100%--
    >
    70----
    ****************|---20---|
    ***************************|10|
    "*" represents empty space
    In comparison to a normal stacked bars chart (w/o stairs):
    70----
    20-----
    10
    I would appreciate any help.
    Best regards,
    Christoph Riesel

    Hi Frauke,
    Sorry for late answer and thank you much for your comment!
    The problem is that waterfall or delta diagram always show the end values and not only the start value and the interim values.
    In the meantime I learned, that the name of the diagram I want to see is called "pareto diagram".
    My conclusion from other forums contributions regarding "Pareto" is, that you need to calculate with cumulated key figures.
    As BEx is not able to calculate with cumulated key figures (BEx always calculates with non-cumulated figures) the only solution would be to create a "cumulated key figures" in the InfoProvider directly. This makes it quite complicated as these cumulated key figures should be based on TOP20 customers in our reporting...
    So maybe the best solution is to use a different diagram type if you consider "cost-benefit ratio" instead of Pareto.
    Regards,
    Christoph

  • Cannot build vertical stacked bar chart!  HELP!

    I have a simple stacked bar chart I want to build with month/year across the bottom that shows the number of orders by category (A,B,C and D).  I understand that I must have 2 dimensions and 1 measure.  However, the chart is not counting the number of orders by category correctly.  I cannot find anything on the net about how to create a vertical chart and troubleshooting why it won't work.
    Here's an Excel Pivot of the data:
    Year/tmonth        A     B     C     D     
    2009/12                    1     1
    2010/02          1     1          2
    2010/04               1          1
    2010/06               1          1
    2010/07        2          1          3
    Grand Total        2     1     4     1     8

    OK, I've used your formula in my measure variables as follows:
    var_stackA =Sum(Count([CAT])Where([CAT]="A"))
    var_stackB =Sum(Count([CAT])Where([CAT]="B"))
    var_stackC =Sum(Count([CAT])Where([CAT]="C"))
    var_stackD =Sum(Count([CAT])Where([CAT]="D"))
    This is my result (as long as I leave the notification in the table):
    Notification     var_chart_receiptmonth     CAT     var_stackA     var_stackB     var_stackC     var_stackD
    200340495                              2009/12          D                             1
    200364557                              2010/02          B                 1          
    200366789                              2010/02          C                       1     
    200372262                              2010/04          C                       1     
    200427391                              2010/06          C                       1     
    200430078                              2010/07          C                       1     
    200433242                              2010/07          A          1               
    200434096                              2010/07          A          1
    This is my result (when I take the notification out):
    var_chart_receiptmonth     CAT     var_stackA     var_stackB     var_stackC     var_stackD
    2009/12                               D                                                                              1
    2010/02                               B                 1          
    2010/04                               C                       1     
    2010/06                               C                       1     
    2010/07                               C                       1
    Where did the A category counts go??
    I've got 2 universes:  GR_MRO Notification Tasks and GR_MRO Operations Details
    I'm merging on two dimension variables (notification and sales organization)
    My report data is filtered using the following 2 filters:
    var_A = 1    calculated via =If([Task Code]="2/CT-HOLD/RTQT";1;0) - detail variable
    var_RTQTDate > 1   calculated via =If([Task Code]="2/CT-HOLD/RTQT";Min([Created On]);0) - measure variable
    Task Code is a dimension variable from the GR_MRO Notification Tasks universe
    A few more calcuations for your review:
    CAT = If([var_DaysAged2]<6;"A";If([var_DaysAged2]<11;"B";If([var_DaysAged2]<21;"C";"D"))) - dimension variable
    var_Days Aged2 =If(IsError(DaysBetween(Min([var_corereceiptdate]);Min([var_RTQTDate2])));0;DaysBetween(Min([var_corereceiptdate]);Min([var_RTQTDate2]))) - measure variable
    var_corereceiptdate =[Receipt Date] - detail variable
    [Receipt Date] - variable from the GR_MRO Operation Details - dimension variable
    Edited by: Amy Jones on Jul 29, 2010 11:18 AM

Maybe you are looking for

  • Cursor in XY-Graph

    Hi, I´m using Labview 6.02 and have a question about the cursor in an XY-Graph. My task is to set the cursor at the beginning to the zero-position (X). Of course this is working only in free-mode. The next task is to prevent scrolling. I have done th

  • Problem with iDVD Chapter selection

    Hi everyone, I've a problem when burning a DVD. In the preview mode of iDVD, I can select the chapter I want using the scene selection menu, but once the DVD is burnt, every scene selection on my DVD player relaunches the DVD main menu (splash screen

  • I wish to add my first podcast link under the "More from Cindy" on my very recent second podcast launch.  Is this possible?

    Hello.  I recently launched my second podcast and would like to direct folks to my first one and vice-versa.  Under the "More from Cindy" category at the iTunes Store page, it (thankfully) shows my website, but does not link to my other podcasts.  Is

  • Satellite U200 with Win XP - Display device change utility is not working

    Hi there, I reckon there's nothing wrong with his installation since I experience the same problem. Fresh install of win XP on a U200 satellite Pro. WXP updated to sp3 straight away. Then downloaded all drivers baseD en serial number from toshiba web

  • CRM HTML Administration - Creating New Permissions

    Hello friends, I was wondering if there are ways to create new Permissions through CRM HTML Administration. I tried to create a new Permission, but was only asked for a Name and Description. I am sure there must be some code behind it. Is there any w