Combination Chart loosing 3-D Theme effects

Any help is appreciated.
I am working with a combination chart that is loosing its 3-D effects given to it by the theme (graphite) for the last couple of data points in the series.
The series is 24 data points (last two years) and the effect disappears on the last two data points (furthest to the right).
I am using Xcelsius 5.3.3.0 and Excel 2007 with Live Office Connections.
Any suggestions or directions are appreciated - thanks ahead of time.

Hello Divyesh,
Arrenge your data in below manner
Week
Lead
SV
Current Week
10
13
Current Week-1
12
10
Current week -2
23
21
Current Week-3
12
12
Current week -4
25
12
For  Project you are taking Combo Box. Please pass project as a prompt  to above Week,Lead, SV  Query/report.
Now take Combination chart(Column line chart) from mobile only ..
Assign the data to chart
In mobile preview mode:
Hope  this is what you want !
Let me know in case any issues.
Thanks
--Shweta

Similar Messages

  • Combination Chart: How to link auto-scaling of both Y-Axis?

    I have a combination chart showing a couple bars and a couple lines.  The bars use the left Y-Axis and the lines correspond to the right Y-Axis.  Although they are based off seperate Y-Axis', the information is still related to each other.
    Under my combination chart i have a slider which increases/decreases a 3rd set of red bars and it can push them so high that the Y-Axis will auto-scale itself, which is great.  But what happens is the secondary Y-Axis will not also re-scale to go wth the primary Y-Axis.  I have 2 screenshots to help demonstrate things a bit better.  So although the information is still technically correct, it is visibly incorrect.  Is there a way to link these 2 Axis together so it knows the max on the left Y-Axis before touching the slider is related to the max on the right Y-Axis? So if the primary y-axis grows, the secondary needs to as well?
    PICTURES
    The slider adjusts the red bars and i put them all the way up just before the point where it re-scales the primary y-axis:
    http://img38.imageshack.us/img38/7853/beforel.jpg
    Now i cranked the slider all the way up and the primary y-axis rescaled itself but the bars still look the exact same in relation to that blue line running across them.  The 2 lines on the graph that use the right y-axis should have dropped lower at the same time the blue/yellow bars did:
    http://img602.imageshack.us/img602/7996/afters.jpg
    Thanks for the help, I appreciate it!

    Hi Scott,
    You can control the scaling on the secondary Y axis. Find the maximum of the data for line as well as the column chart (here you can take help of MAX() excel formula) then take the maximum value out of the result and that cell storing data from slider. In this way we can find out the largest data among all. Use that data as the maximum limit for primary as well as for secondary axis,
    Go to the Behavior tab of the chart > primary scale > maximum limit > elect the cell containing the calculated maximum value.
    Repeat the same steps for secondary axis also. Now the change in one series will have uniform effect on both the axis.

  • Possibility of creating combination chart Barchart/Line graph within OBIEE

    Hi
    Is it possible to create a combination chart within OBIEE as can be done in Excel by changing the chart type on one of the individual series - ie graph multiple series of data as a combination of Barchart & Line series?
    Any info appreciated
    Thanks & Regards
    K

    The charting can be as dynamic as you like if you willing to pre-configure the required options.
    Simply create as many charts as you want from one request, and use a view selector to allow the user to switch between them.
    You can use level based measures and any else you want as seperate columns (all in same request) then chart them accordingly.
    Hope this helps

  • Combined Chart with Jfreechart

    I am using jfreechart-0.9.3 for drawing 4 charts on the same plot. I want to have two of them horizontally and two vertically next to eachother. When I tried to imitate the code of Demo combined charts by jfreechart (which only draws two charts next to eachother horizontally), I can't do that vertically. Because there is no
    com.jrefinery.chart.HorizontalXYBarRenderer and com.jrefinery.chart.VerticalDateAxis classes. How can I make it vertically? Is there any other classes which could be usefull in jfreechart?
    The code of two horizontal charts looks like this:
    import com.jrefinery.chart.JFreeChart;
    import com.jrefinery.chart.ChartPanel;
    import com.jrefinery.chart.XYPlot;
    import com.jrefinery.chart.XYItemRenderer;
    import com.jrefinery.chart.VerticalXYBarRenderer;
    import com.jrefinery.chart.HorizontalDateAxis;
    import com.jrefinery.chart.VerticalNumberAxis;
    import com.jrefinery.chart.CombinedXYPlot;
    import com.jrefinery.chart.tooltips.TimeSeriesToolTipGenerator;
    import com.jrefinery.data.BasicTimeSeries;
    import com.jrefinery.data.TimeSeriesCollection;
    import com.jrefinery.data.Day;
    import com.jrefinery.data.XYDataset;
    import com.jrefinery.data.IntervalXYDataset;
    import com.jrefinery.date.SerialDate;
    import com.jrefinery.ui.ApplicationFrame;
    import com.jrefinery.ui.RefineryUtilities;
    * A demonstration application showing a time series chart overlaid with a vertical XY bar chart.
    public class CombinedXYPlotDemo extends ApplicationFrame {
    * Constructs a new demonstration application.
    public CombinedXYPlotDemo(String title) {
    super(title);
    JFreeChart chart = createCombinedChart();
    ChartPanel panel = new ChartPanel(chart, true, true, true, false, true);
    panel.setPreferredSize(new java.awt.Dimension(500, 270));
    this.setContentPane(panel);
    * Creates a combined XYPlot chart.
    private JFreeChart createCombinedChart() {
    // create a parent plot...
    CombinedXYPlot plot = new CombinedXYPlot(new VerticalNumberAxis("Value"),
    CombinedXYPlot.HORIZONTAL);
    // create subplot 1...
    IntervalXYDataset data1 = this.createDataset1();
    XYItemRenderer renderer1 = new VerticalXYBarRenderer(0.20);
    renderer1.setToolTipGenerator(new TimeSeriesToolTipGenerator("d-MMM-yyyy", "0,000.0"));
    XYPlot subplot1 = new XYPlot(data1, new HorizontalDateAxis("Date"), null, renderer1);
    // create subplot 2...
    XYDataset data2 = this.createDataset2();
    XYPlot subplot2 = new XYPlot(data2, new HorizontalDateAxis("Date"), null);
    XYItemRenderer renderer2 = subplot2.getRenderer();
    renderer2.setToolTipGenerator(new TimeSeriesToolTipGenerator("d-MMM-yyyy", "0,000.0"));
    // add the subplots...
    plot.add(subplot1, 1);
    plot.add(subplot2, 1);
    // return a new chart containing the overlaid plot...
    return new JFreeChart("Horizontal Combined Plot",
    JFreeChart.DEFAULT_TITLE_FONT, plot, true);
    * Creates a sample dataset.
    private IntervalXYDataset createDataset1() {
    // create dataset 1...
    BasicTimeSeries series1 = new BasicTimeSeries("Series 1", Day.class);
    series1.add(new Day(1, SerialDate.MARCH, 2002), 12353.3);
    series1.add(new Day(2, SerialDate.MARCH, 2002), 13734.4);
    series1.add(new Day(3, SerialDate.MARCH, 2002), 14525.3);
    series1.add(new Day(4, SerialDate.MARCH, 2002), 13984.3);
    series1.add(new Day(5, SerialDate.MARCH, 2002), 12999.4);
    series1.add(new Day(6, SerialDate.MARCH, 2002), 14274.3);
    series1.add(new Day(7, SerialDate.MARCH, 2002), 15943.5);
    series1.add(new Day(8, SerialDate.MARCH, 2002), 14845.3);
    series1.add(new Day(9, SerialDate.MARCH, 2002), 14645.4);
    series1.add(new Day(10, SerialDate.MARCH, 2002), 16234.6);
    series1.add(new Day(11, SerialDate.MARCH, 2002), 17232.3);
    series1.add(new Day(12, SerialDate.MARCH, 2002), 14232.2);
    series1.add(new Day(13, SerialDate.MARCH, 2002), 13102.2);
    series1.add(new Day(14, SerialDate.MARCH, 2002), 14230.2);
    series1.add(new Day(15, SerialDate.MARCH, 2002), 11235.2);
    return new TimeSeriesCollection(series1);
    * Creates a sample dataset.
    private XYDataset createDataset2() {
    // create dataset 2...
    BasicTimeSeries series2 = new BasicTimeSeries("Series 2", Day.class);
    series2.add(new Day(3, SerialDate.MARCH, 2002), 16853.2);
    series2.add(new Day(4, SerialDate.MARCH, 2002), 19642.3);
    series2.add(new Day(5, SerialDate.MARCH, 2002), 18253.5);
    series2.add(new Day(6, SerialDate.MARCH, 2002), 15352.3);
    series2.add(new Day(7, SerialDate.MARCH, 2002), 13532.0);
    series2.add(new Day(8, SerialDate.MARCH, 2002), 12635.3);
    series2.add(new Day(9, SerialDate.MARCH, 2002), 13998.2);
    series2.add(new Day(10, SerialDate.MARCH, 2002), 11943.2);
    series2.add(new Day(11, SerialDate.MARCH, 2002), 16943.9);
    series2.add(new Day(12, SerialDate.MARCH, 2002), 17843.2);
    series2.add(new Day(13, SerialDate.MARCH, 2002), 16495.3);
    series2.add(new Day(14, SerialDate.MARCH, 2002), 17943.6);
    series2.add(new Day(15, SerialDate.MARCH, 2002), 18500.7);
    series2.add(new Day(16, SerialDate.MARCH, 2002), 19595.9);
    return new TimeSeriesCollection(series2);
    * Starting point for the demonstration application.
    public static void main(String[] args) {
    CombinedXYPlotDemo demo = new CombinedXYPlotDemo("Combined XY Plot Demo");
    demo.pack();
    RefineryUtilities.centerFrameOnScreen(demo);
    demo.setVisible(true);

    I don't believe it supports putting them vertically and horizontally... only one way or the other. ...
    Although, 0.9.3 is pretty old... what about a newer version... I haven't played with those charts in about 9 months, so my info is a little out of date. Problem is, after 0.9.6 (I think) they changed a lot of the packages around so a lot needs to change.

  • Need to remove secondary Y axis scale numbers from Combination chart in Dashboard 4.0

    Hello all,
    I am using Dashboard 4.0 and combination chart. Earlier in combination chart, we had secondary Y axis and scale numbers on secondary Y axis. When I remove secondary Y axis and scale numbers, 0(min scale) and 1 (max scale) are not going off, they are still in the chart. How to remove them.
    Thanks,
    Renu

    Hi Renu,
    Instead of selecting data by Series, select the data by Range and map the data accordingly. Please follow the screen short for your reference.
    Regards,
    G.S.Ram.

  • Not able to show data in combination chart

    Hi Experts,
    I am new to BO Design studio and I am facing some issues in beginning itself. My issue is, I have 12 months data for some KPI's and I need to show two KPI's values in a single chart(Combination or Dual axis).
    In Initial view I have selected needed KPI's and measures
    once inserted chart, in data selection I have selected only those two KPI's which i want to show in chart but when i select 2nd KPI's measures I am getting following error.
    Am I doing in right way? Is there any other way to show two KPI's measures in combination chart?
    Please help
    Regards,
    Mathivanan.M

    What type of object is Vendor_KPI in your screen shot?  Is it a measure?
    Separately it looks like some fixes are planned for Design Studio 1.3, planned for end of May (roughly) - this is what we heard last week.  See http://service.sap.com/sap/support/notes/1979823

  • Change theme effects on Nokia N8

    I saw many videos on YouTube showing where different and more striking effects that bring Symbian Belle. Even in the video of the new FP2 effects are better. Can those be changed?
    Belle Symbian Example: http://www.youtube.com/watch?feature=player_embedded&v=wWshwXrZ8hE #!
    Belle Symbian FP2 Example: http://www.youtube.com/watch?v=ACpffbEzDqk&feature=player_embedded
    The effects of FP2 I like, since they are similar to those brought Symbian Anna.
    Nokia N8-00 user

    you can put a lot of theme effects on your N8, there are a lot to choose from, even the ones that are like FP2 ones.
    There are very easy to install, and it gives yor phone a better appearance 
    Hope that helps 
    Moderator's Note: This post was edited to remove the link provided which is not on topic.

  • Plotting a combination chart with a combo box for selection

    Hi:
    I am a newbie using xcelcius and I need help on the following:-
    I need to create a combination chart that plots 3 years data by month, and I need a combo box selection at the top that allows me to select user display for each difference region. I manage to create one that plots only 2008 data with a combo-box selection, but I have no idea how to do it for a combi chart in xcelcius. Any advise?

    Hi Ning,
    I assume your data are like this:
    Region             Year     Jan     Feb     Mar
    APJ             2006     $234.45     $310.34     $321.54
    APJ             2007     $314.35     $319.12     $256.89
    APJ             2008     $425.54     $354.34     $285.73
    North Asia     2006     $534.64     $642.35     $484.64
    North Asia     2007     $631.74     $654.13     $754.34
    North Asia     2008     $754.31     $423.65     $634.32
    South East Asia     2006     $536.42     $576.35     $525.42
    South East Asia     2007     $426.78     $876.43     $643.75
    South East Asia     2008     $634.87     $425.77     $732.43
    If this, you can set the insertion type of combo box is "Filtered Rows", see steps:
    1) For Combo Box, bind General > Labels to the Region column.
    2) Set General > Data Insertion > Insertion Type is "Filtered Rows" (you can refer to following flash to see how "Filtered Rows" works).
    3) Set its Source Data are Year, Jan, Feb, ... columns and Destination to blank cells.
    4) Bind Chart to the destination data.
    Now when you select APJ from Combo Box, it will insert all the rows of APJ data to the desitination cells which will be displayed in Chart.
    Hope this can help!

  • Problem with logarithmic scale in combination chart

    Hi Experts,
    I have a combination chart where in primary axis i am showing column chart and in the secondary axis, i am showing line chart. Now as the range of values used in the column chart is big, I have to use logarithmic scale in primary axis. But if i do so, the line chart is also being affected. The markers for negetive values in the line chart plotted in secondary axis disappears if I apply logarithmic scale in primary axis.
    Is it a bug ?
    I am using Xcelsius 2008 SP3.
    Thanks and Regards

    Hi:
       Yes, I also noticed this problem, seems when you set primary axis as "Logarithmic", the secondary axis with negative value "<0" will be ignored as "0". I think it should be an issue.
       A quick work around here is, swith your primary axis and your secondary axis, when you set seconary axis as "Logarithmic", the negative values in primary axis will not be ignored.
    Hope it helps.

  • Theme effects

    Hi. I use nokia 500. Whenever i switch on the theme effects my phone becomes slow. Why?

    Because its using RAM its been well noted already ,just turn them off.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Nokia E5 theme effects??

    hey everyone, I was want to know that does the Nokia e5 have the same theme effects for all themes?
    Because whichever theme i set the theme effect is the same, that is when i move cursor on an icon theres a slight bounce and when I open an app theres a round loading clock with colorful bars. Is it the same for everyone else?? because i suspect that the theme effect is different for each theme and its not change from theme to theme in my phone. Theres a theme called colors by mmo available for free on ovi store, i turned on theme effects for the first time after installing it and i think the theme effects of that theme are stuck on my phone and won't change

    the effect will be the same for all themes.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Theme effects on Nokia n81 8gb

    Did anyone notice the theme effects option on a n81. If so, what is it for? I mean I didn't find any difference whether it is on or off. It is at Menu> Tools> Settings> General> Personalization> Themes> General> Options> Theme effects.

    Do a hard reset, and then try again to install the n gage application into your phone.
    Hard reset (the three key code/reset). Turn off the phone. Press and hold three keys together, the green/talk key, the * key and the number '3'.Then, turn on the phone and don't let the three keys before you see the nokia hands logo/nokia boot up screen.Warning!You will lose ALL your phone's data/files!
    If this post was useful, thank me by clicking the Kudos! button.
    Message Edited by phonehacker on 15-Sep-2009 12:44 PM
    If you want to thank someone, just click on the blue star at the bottom of their post

  • E52 Theme Effects Don't Work

    Hello Friends
    My E52 Theme Effects Don't Work Correctly.
    when i Press ON for theme effects, mobile speed get low and effects don't work
    please help me

    Pre-composing and then switching off Ray-traced rendering in the main comp gives you the ability to apply effects to the pre-comp. This may or may not work for your situation.
    Another option is to pre-render your Ray-traced work and then apply effects to the footage. There's almost always something you can do if you think about it for a while.
    Still another option is to put a 2D adjustment layer above your 3D Ray-traced layer and apply the effect there.

  • Change color palette of combination chart

    Hello everyone,
    I am experiencing a problem when trying to change to color palette of a combination chart.
    According to the api there should be a method setColorPalette(aColorPalette) and a property colorPalette;
    (JsDoc Report - SAP UI development Toolkit for HTML5 - API Reference - sap.viz.ui5.types.Combination)
    when I try to call this method I receive the following error:
    TypeError: Object [object Object] has no method 'setColorPalette'
    I introduced the combination chart before by calling jQuery.sap.require("sap.viz.ui5.types.Combination"); outside of the controller;
    I also tried to add the porperty colorPalette in xml, but it seems to be ignored.
    Has anyone an idea on what the reason could be?
    Best regards,
    Benedikt

    Hi Benedikt,
    you can find below working code of changing color palette of chart.
    This is based on pie chart but accordingly you can use for combination chart.
    JS Bin - Collaborative JavaScript Debugging&lt;/title&gt; &lt;link rel=&quot;icon&quot; href=&quot;http://static.jsbin.…
    Regards,
    Chandra

  • Secondary Axis Label in Combination Chart

    Hi Everyone,
    I´m trying to make a Pareto Diagram with a Combination Chart, but I need a secondary Y axis for my cumulative frecuency. Is that possible???
    Thanks in advance.

    Hi Jessica,
    It is possible to do  Pareto Diagram with combination chart.Do like this take one measure on Primary Axis and select second measure and enable the secondary axis and map the values.
    Regards,
    Ramana
    Edited by: RamanaReddy Varra on Jul 27, 2011 11:38 AM

Maybe you are looking for