URGENT!!VALUES DISPLAY IN CHART BARS & COLOR THEMES !!

hi
I want the chart to be displayed with the their values but u can see the values only by rolling over each bars.
Could anyone help me out what are the solutions to be carried out???Is there any options in the EP itself to enter the values displayed automatically when execting it????
what about the color themes to be changed for each bars as per user requirement in EP???
THNX
RAJ.

hi Raj,
Few options:
1. if you are using query designer to create query and displaying it in the web analyser and choose graph there, you cant really change the colors of the graphs.
In that case you have to create the web template in the WAD for the same query in BI and make color selections in the graph control in WAD.
2.If you dont want to use WAD, you can use visual composer and try out various options of its chart control. you also have animations possible in visual composer. VC is totally in EP and you dont have to do much on BI except for the query creation.
hope it helps..

Similar Messages

  • Controlling Chart Bar Colors

    Hello, I'm just beginning to add charts to my application and I'm finding it difficult to control Chart bar color dynamically. I would like Red, Yellow, Green bars based on limits on the Bar value. Example Values under 5 may be Green, 5 - 9 Yellow, and over 10 Red. The HTML chart appears to either be Random or one Specifc color, and the SVG Chart appears to only be a sinlge color. Both are chosen on the attribute screen of the chart.
    Anyone done Dynamic Chart Bar coloring? - Thanks

    Hi, and welcome!
    Have a look at: [http://apex.oracle.com/pls/otn/f?p=44602:2]
    To get this on a Flash Chart, I have:
    1 - Set the chart type to: Stacked 2D Column
    2 - Set the Color Scheme setting to: Custom
    3 - Set the Custom Colors to: red,yellow,green
    4 - Created THREE series (with a maximum of 15 rows each) with the following SQL statements:
    Series 1:
    SELECT NULL LINK, ENAME LABEL, CASE WHEN SAL < 1000 THEN SAL ELSE 0 END VALUE FROM EMP WHERE SAL IS NOT NULL ORDER BY ENAME
    Series 2:
    SELECT NULL LINK, ENAME LABEL, CASE WHEN SAL BETWEEN 1000 AND 2000 THEN SAL ELSE 0 END VALUE FROM EMP WHERE SAL IS NOT NULL ORDER BY ENAME
    Series 3:
    SELECT NULL LINK, ENAME LABEL, CASE WHEN SAL > 2000 THEN SAL ELSE 0 END VALUE FROM EMP WHERE SAL IS NOT NULL ORDER BY ENAME
    As long as my SQL is correct and the SAL value ranges don't overlap, each ENAME entry will appear in one, and only one, series - for the other two series, the value will be reset to 0, so nothing is shown.
    Andy

  • CR for VS 2005 - Bar Chart - Bar colors

    Hi,
    I'm creating a report in Visual Studio 2005 and have a bar chart in it.  I've searched the forums but can't seem to find out how to change the colors of the Series bars.
    If anybody has any ideas or suggestions, they would be greatly appreciated.
    Thanks in advance.
    Ron

    Apparently, the version of CR that ships with Visual Studio doesn't allow much in the way of customization.  I have since upgraded to CR 2008 and can now change the bar colors.

  • Flash Chart Bar Colors

    We just came up on 3.0.1 from version 2.
    Now I want to implement Flash charts and everything is working fine with the exception of the colors on bar charts. My customer wants colors different from the default.
    How can I change the colors of the bars on the charts?
    Bob

    Bob,
    Under the Chart Attributes, select Custom Color on Color Scheme and enter your desired color or select one via the Flashlight.
    Jeff

  • Vary Chart Bar Graphs Color

    Hello folks!
    I am creating an Excel chart using Excel Interop (please find below code and output for the code given below). I need to vary the colors of same-series chart bar graphs (The graphs only now in orange). This line of code doesn't do the trick:
    series1.Interior.ColorIndex = XlColorIndex.xlColorIndexAutomatic;
     How can I achieve my goal? Any advice will be appreciated!
    Excel.ChartObjects xlCharts = (Excel.ChartObjects)_sheet.ChartObjects(Type.Missing);
    Excel.ChartObject myChart = (Excel.ChartObject)xlCharts.Add(236, 241, 224, 268);
    Excel.Chart chartPage = myChart.Chart;
    chartPage.HasLegend = false;
    chartPage.ChartType = Excel.XlChartType.xlColumnClustered;
    chartPage.ChartStyle = 4;
    Excel.SeriesCollection seriesCollection = chartPage.SeriesCollection();
    Excel.Series series1 = seriesCollection.NewSeries();
    series1.Name = "My Title";
    series1.XValues = xValues;
    series1.Values = yValues;
    series1.Interior.ColorIndex = XlColorIndex.xlColorIndexAutomatic;
    Excel.Axis axis = (Excel.Axis)chartPage.Axes(
    Excel.XlAxisType.xlValue,
    Excel.XlAxisGroup.xlPrimary);
    axis.HasTitle = true;
    axis.AxisTitle.Text = "My Chart";
    series1.ApplyDataLabels(
    Excel.XlDataLabelsType.xlDataLabelsShowLabel,
    true, true, true, false, false, true, true,
    true, true);

    Hi hokushin,
    The series1.Interior.ColorIndex property can only set the color for the whole series. If you want to vary the color of the bar graphs in the same series, one way is to vary the color by the Point.  For example:
    int pointsCount = series1.Points().Count;
    for (int i = 1; i <= pointsCount; i++)
    series1.Points(i).Interior.Color = Color.FromArgb(0, 30*i, 0);
    You can set the color as you want for every Point of the series, the series1.Points([point number]) method will return the whole Points collection or just one Point of them.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I show a 0% range in the data value label on a bar chart thanks?

    How can I show a 0% range in the data value label on a bar chart thanks?

    I'm not sure what the question is. 
    I know that if you have a bar chart and one of the categories (X-axis) has bar (Y value) equal to 0%, no bar is plotted for that category. Even the addition of a stroke (line) around the bars doesn't make one appear for 0%.  The only automatic way I know of to make it look like there is data in that category is to add the value labels to the bars. Inspector/Chart/Series, select one of the bars on the chart, click on "value labels". Another method that is a workaround is to fudge the number a little in your table so that instead of 0% it is a very small %.  This will get you a thin line on the chart.
    But if your question is about the value labels (the numbers that display on or in the bars) and you are not getting one for a bar that is supposed to be 0%, it probably means your table doesn't actually have a 0% in the corresponding cell. A blank cell in the table will not get a value label.

  • How do I remove the drop shadow from the value labes on my bar chart in Pages?

    How do I remove the drop shadow from the value labes on my bar chart in Pages?

    As far as I know, you must use brute force in the index.xml file describing the document.
    Search the descriptor of your values labels
    It starts with : <sf:SFCBarSeriesValueParagraphStyleProperty>
    and delete the three items describing the shadow.
    I highlighted it with red.
    Yvan KOENIG (VALLAURIS, France) vendredi 8 juillet 2011 19:08:31 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Display three Values in Pie charts

    Hi All,
    I want to display three Values in Pie Chart(%, Value and one more field). Please suggest me any solution for this.
    For Eg Pie chart should display value lie this :- Nokia, 25,025, 38.52% (It consists of three differet values)
    Thanks,

    I am not sure if you could get the concatenation to work.
    But here are some ideas (please post if you get the solution):
    - Take a look at the list of other formatting options based on the following link:
    http://www.oracle.com/technology/products/xml-publisher/blog/xsltext/10134/oracle/apps/xdo/template/rtf/XSLTFunctions.html
    - Another alternative is to customize the class file : oracle/dss/graph/SliceLabel.class located in bipres.jar
    You would need to customize it to do what you need.
    a) Modify this one so that it is used by the BIP Server
    C:\OracleBI\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\lib
    b) Modify this one so that it is used by the Client : MS Word AddIn:
    C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\jlib
    regards
    Jorge

  • How to display value in waveform chart

    dear sir
    i am using labview 7.0 with dsc module for scada.
     now i want to display the difference between two tags value in waveform chart. Also i want to display that difference value on y axis and system date and time on x axis continously. Also if there will change in that tag value then there should be reflection of that value on wavwform chart with system time. Really i am in trouble. please help me.
    falgandha mohire

    Nadim,
    Why would an XY graph be preferable to using a Waveform Chart where the "t0" is the time of the measurement?
    I don't get it.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • InDesign Adobe Color Themes only displays in Essentials Workplace

    I am probably missing something but I can't get Adobe Color Themes to display in anything but the Essentials workplace. Tried with a few eg Advanced plus my own custom workplaces.
    Is this (a) a deliberate restriction, (b) a bug, or (c) I have forgotten to perform some ritual or incantation?
    I am using Adobe InDesign CC 2014.2 on a Windows 7 64 bit platform.

    Try restoring your InDesign preferences:
    Trash, Replace, Reset, or Restore the application Preferences

  • Hide Chart Bar by value

    I have designed the cross-tab chart report with year at column, member count by risk row and risk level value.
    I want to hide chart bar if risk level value is less then 3. How can I create that filter/formula in Crystal Reports 2008 ?

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with your directly

  • Does the Adobe Color Theme have a scroll bar?

    I can't view and explore all the themes from the color theme panel in Adobe In design? I only see some of them. When I try to drag down to see other themes I can't. The answer to my question might be simple but I can't seem to find it. Please help.

    Jeremy,
    I'm able to scroll fine with my mouse.  There is no scroll bar UI, but the panel is scrollable.  Just like modern web browsers.
    Can you tell me more about the problem you are facing?
    Thanks.

  • JTable cell color overriding Boolean values displayed as checkboxes. Fix?

    I have a JTable column of Boolean values that automatically appear as checkboxes. When I apply my DefaultTableCellRenderer to this column, the checkbox disappears and a "false" or "true" appears instead. But if I mouseclick on the cell, the checkbox will appear momentarily.
    Any suggestions for getting the Boolean value displayed as a checkbox and seeing my colors change? (I suppose the easy way is using JCheckBox, but I'm curious if I can do it using Boolean)
    Thanks for the help. Code follows for the cell renderer.
    class ColorRenderer extends DefaultTableCellRenderer{
    public ColorRenderer() {
    super();
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    if (isSelected == true) {
      setBackground(Color.getHSBColor(100, 100, 1));
      setForeground(Color.BLACK);
    } else {
      setBackground(Color.LIGHT_GRAY);
      setForeground(Color.WHITE);
    if (hasFocus == true) {
      setBackground(Color.RED);
      setForeground(Color.WHITE);
    setOpaque(true);
    setValue(value);
    return this;

    Wouldn't extend DefaultTableCellRenderer as that extends a JLabel
    I would extend a JCheckBox and implement TableCellRenderer.

  • Display Column Chart Y Axis Labels in Kilo(K), Million(M)...

    Hi Folks,
    I would like to display the Y-axis labels of a column chart in Kilo, Millions etc. I used the below mentioned formula in excel for that set of data. Here is the formula [>=1000000]0,,"M";[>=1000]0,"K";0
    Though in embedded excel it displays the values as desired, when I assign them to the column chart in Xcelsius the Y axis labels are not as expected. For Kilo it works fine but when it comes to millions it is not displaying accordingly. Any help is appreciated.
    Thanks,
    Sukumar

    Hi Sukumar,
           If You want to display the Y Axis Labels like Kilo(k),Million(M),Billions(B)...etc.Do the following things ,
            goto column chart properties->behaviour->scale in that Enable the Fixed Label size checkbox.
    Regards,
    Ramana

  • ELOCATION_MERCATOR.WORLD_MAP errors for pie/bar graph theme below zoom 5

    Hi,
    I am trying to create a map using ADF DVT map component in my jspx page. I am using 'elocation_mercator.world_map'. I am creating a pie graph theme over the base world map. For some reason whenever I zoom below 5, i get following javascript error
    [MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (<?xml version="1.0" encoding="UTF-8" ?> <oms_error> MAPVIEWER-06009: Error processing an FOI request.
    Root cause:FOIServlet:null</oms_error>)
    The Pie graphs displays fine at or above zoom level 5. I tried the same thing using my local map viewer instance which has mvdemo.demo_map as the base map. The pie graph displays fine at all zoom levels using my local map. Can anybody tell me what may be the problem when I use the elocator world_map. I can't even look at the logs as it's a hosted service.

    Here are the steps to reproduce the problem
    1) Create a jspx page.
    2) From the component palette on the right hand side, select ADF Data Visualizations and then click on Map in the Geographical Map section. This will open an ADF Map configuration window.
    3) Create a new Map Configuration by providing an id and a URL connection. If you have not created a URL Connection to elocation service, create a new connection to "http://elocation.oracle.com/mapviewer" and select that connection.
    4) You will see data source as ELOCATION_MERCATOR and Base map as WORLD_MAP selected. Enter startingY="38.648911" startingX="-98.349609" , select mapZoom="5" and Click on OK.
    5) Now create an entity object and a view object based on the STATES table in the MVDEMO database and add it to an application module.
    6) Refresh the application module data control. You should a new StatesView1 data control.
    7) Drop it on the map and select Bar graph theme. This will open a Bar Graph theme configuration window for the Map.
    8) In the Name select MAP_STATES_ABBRV. In the location column select STATE_ABRV.
    9) In the Data Location Select Location as StateAbrv and Location Label as State.
    10) Enter Series Attribute as Totpop and Label as Total Population. Enter series attribute as Female and Label as Female Population. Click OK.
    11) Now Run this page.
    12) The page runs fine displaying the Bar chart. Now zoom out. You will get error
    '[MVThemeBasedFOIControl.foiLoaded] MAPVIEWER-05523: Cannot process response from MapViewer server. (<?xml version="1.0" encoding="UTF-8" ?> <oms_error> MAPVIEWER-06009: Error processing an FOI request.
    Root cause:FOIServlet:null</oms_error>)'
    When you say that we should use elocation for map tiles not for FOI rendering, does that mean that I should not use the themes provided by elocation. When I enter the base URL to a mapviewer instance in my map client, the base map and the themes are displayed from the database used by the mapviewer instance. So, how can I use my own mapviewer for FOI rendering? Can you please explain a little more. Thanks.

Maybe you are looking for