Colours for Line Chart

I am trying to create comparative line charts for yearly data over at least a decade (i.e. at least 10 individual lines on one chart).
Any lines over six don't print. The unprinted lines have a colour allocated against them in the associated table, but not in the chart legend - the labels do appear in the legend.
I have been trying to manipulate the Chart Colours… (which does appear to be restricted to six) without any success.
(P.S. For any American readers - my spelling corrector is automatically inserting the 'u' in colours.)

Graham & Heather Harrison wrote:
I'm not sure I like that saying something can't be done is the correct answer…
You may dislike it if you wish (we are free) but this will not change the program design.
However you can have the medal if you tell me how to superpose charts - I can't find that in the Users Guide.
It was described here many times.
(1) build the two charts
(2) strip every titles, legends,… from one of them
(3) adjust the min and max values if necessary (on both axis)
(4) select the chart which you strip then from the format bar define its background to none so it will be transparent.
(5) drag the 'transparent' chart above the 'complete' one.
If you don't group them, they will remain 'living' charts which will evolve with changes in datas.
I didn't checked but I assume that grouping them will freeze them.
If the medal is made of TRUE chocolate, I'm interested.
It it is made of the brown mixture which is sold as 'chocolate' in the USA, I am not
Yvan KOENIG (from FRANCE lundi 29 juin 2009 18:04:52)

Similar Messages

  • How to Axis labels for Line charts in Business Graphics

    Hi
    I am planning to do the Business Graphic example using Line chart.As part of this
    i didn't clearly understand what is the perpose of Series,Points,categorys?
    if i want to set the Labels at X-axis and y axis ,then how to do that?Baiscally i want to put time related data as X-axis label(20min,30min,60 min etc).Please help.
    is there any good example to understand the concept?
    Thanks
    Prasad

    Hi Bachier
    Thanks for your repsonce.I had seen the example you suggested.but there is no answer for my question.How to set the x-Axis,Y-axis Labels.I had done example for "line chart".But i have same problem:
    Hi
    I am trying to do example on "line chart" using Business graphics in my webdynpro application.
    In the Context i created Node "A" under which i created "B".then it has  value attributes xValue,yValue.Then in View i created BG UI element >Series>point-->NumericValue(for xValue) ,NumericaValue(yValue).Now in view init() method i had initialized values to x and y. some output is coming.but i want to know how to set the X-Axis Label,y-Axis Labels.in X-Aix Label i want to mention time in hrs i.e 8.00,8.30AM,9.00AM,9.30AM etc.as part of y-axis labels i want to mention numeric values( .2,.4,.8,2.0 etc). Please tell me how to set this X-Axis,y-Axis labels.at every 30min(8.00Am,8.30AM etc) user enter quality data(i.e .2 etc) then i want to generate chart.Please help in this regard.i will give very good points
    Thanks
    Prasad

  • Color not consistent for Line Chart and Legend for prev and curryr

    Hi
    I am trying to pull last year and current year data in line chart with different color coding. I have multiple parameters selection on single chart. For some it reflects the color properly and for others it interchanges the color.
    Crystal xI R2..
    Please let me know the solution.
    Thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Getting BEx query header data into Xcelsius for line chart Category Labels?

    Hello - Is it possible to get header data from BEx queries into Xcelsius so they can be used for Category Labels in a line chart?
    We have a BEx query that displays 16 weeks of shipment trends by column and text variables are used to display the respective date selection for each of the weeks in the query header but When connecting QaaWs to Xcelsius, the header row does not get displayed.
    When using LiveOffice, the header row seems to come thru with the correct dates for each of the weeks but if you are stacking more than one connection than you will get an extra header row for each connection.
    Are there any tricks to hide a header row in a LiveOffice document?
    Is there anyway to display the header row from QaaWs in Xcelsius?
    Any other work arounds?
    Thanks,
    Derek

    Derek,
    Below are my inputs...
    -->Using QAAWS you will not be able to get the header data, so you will have to maintain header data manually in Xcelsius (Spreadsheet).
    -->Using Live office you will be able to get the header data, and if you are using multiple live office connections, then you need to use cell reference formulas and format the spreadsheet (Xcelsius) as you require.
    -Anil

  • CR Enterprise - Custom y-axis labels for line chart

    Hi
    I have data with a discrete status (STATUS-1...STATUS-5) per day, like
    Feb 1: STATUS-1
    Feb 2: STATUS-2
    Feb 3: STATUS-2
    Feb 4: STATUS-1
    Feb 30: STATUS-4
    Feb 31: STATUS-1
    This series I'd like to render in a date axis line chart with the daily status ordinals (1-5) on the y-axis.
    Now I wonder how I can label the y-axis ticks with the respective STATUS text instead of the ordinal.
    Unfortunately, the option "Total (Y) Axis/Axis/AxisLabels/Display Label" is disabled due to the value's numeric nature.
    How can I manually overwrite y-axis labels or map them to custom text?
    Thanks. Jens

    HI Jens,
    Have you tried creating a formula and using that in 'Show Values' section of the chart?
    Formula:
    "STATUS-" & {Numeric_field}
    -Abhilash

  • Change the default colours in line chart

    hi everyone,
    I'am a new user in Flex, and I am facing my first barrier
    I am using a code to interact a table and a graph
    the defaults colours of the lines are orange and a kind of green
    I would like to change these colours to red and pure green if it's possible
    here is my code
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute" width="600" height="600"
    creationComplete="init()" applicationComplete="stage.scaleMode = StageScaleMode.EXACT_FIT;">
    <mx:Script>
    <![CDATA[
    [Bindable] private var chartData:XML;
    private function init():void
    //Inject the JavaScript functions we need to interface with the RMA
    //You can find the scripts below in the "acroJSFunctions" string object
    ExternalInterface.call("eval", acroJSFunctions);
    //set up callback for upadtes
    //the format script in each of the fields uses callAS to send the field name and it's value to the RMA
    //the function for this callback then modifies the XML that drives the chart.
    ExternalInterface.addCallback("changeData", changeData);
    //set up callbacks for commenting
    ExternalInterface.addCallback( "multimedia_getState", getState );
    ExternalInterface.addCallback("multimedia_setState", setState);
    loadDefaultXML();
    private function loadDefaultXML():void
      var req:URLRequest = new URLRequest("defaultChartData.xml");
    var loader:URLLoader = new URLLoader(req);
    loader.addEventListener("complete", xmlLoaded);
    private function xmlLoaded(event:Event):void
        chartData = new XML(event.target.data);
        loadDataFromAcroFields();
    private function loadDataFromAcroFields():void
        //get the values from the PDF
        var c:int;
        var r:int;
        for (c=0;c<2;c++)
       for (r=0;r<16;r++)
          var result:String = ExternalInterface.call("getFieldValue",r, c);
          chartData.children()[r].children()[c] = int(result);
    private function changeData(name:String, value:String):void
    //this function gets called when the field value in the PDF file changes
    //look in the format script for the field in the PDF.
    //the field name is in the form "table.r.c" where r is the row number and c is the column.
    //So the first field in the table would be called "table.0.0"
    //By splitting the string into an array, I can modify the corresponding element in the XML object that drives the chart.
    var fieldNameArray:Array = name.split(".");
    var row:int = int(fieldNameArray[1]);
    var column:int = int(fieldNameArray[2]);
    var val:int = int(value);
    chartData.children()[row].children()[column] = val
    private function getState():String
    //store the chart data XML
    return chartData.toString();
    private function setState(stateData:String):Boolean
    chartData = new XML(stateData);
    var c:int;
    var r:int;
        for (c=0;c<2;c++)
       for (r=0;r<16;r++)
          var fieldVal:String = chartData.children()[r].children()[c].toString();
          var result:String = ExternalInterface.call("setFieldValue",r, c, fieldVal);
    return true;
    ]]>
    </mx:Script>
    <mx:String id="acroJSFunctions">
    <![CDATA[
    function getFieldValue(row, column)
        fieldName="table."+row+"."+column;
        fieldValue = this.getField(fieldName).value;
        return fieldValue;
    function setFieldValue(row, column, value)
        fieldName="table."+row+"."+column;
        this.getField(fieldName).value = value;
    ]]>
    </mx:String>
    <mx:SeriesInterpolate id="interpolateIn" duration="1000"/>
    <mx:Canvas backgroundColor="#FFFFFF" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" borderStyle="solid" borderThickness="1" borderColor="#000000">
        <mx:LineChart id="chart" dataProvider="{chartData.totals}" showDataTips="true"
         left="10" top="10" right="10" bottom="10">
         <mx:horizontalAxis>
          <mx:CategoryAxis categoryField="Day"/>
      </mx:horizontalAxis>
      <mx:series>
       <mx:LineSeries yField="FY06" displayName="No. errors" showDataEffect="{interpolateIn}"/>
       <mx:LineSeries yField="FY07" displayName="No. lines" showDataEffect="{interpolateIn}"/>
      </mx:series>
    </mx:LineChart>
         <mx:Legend dataProvider="{chart}" right="25" bottom="25" borderStyle="outset"/>
    </mx:Canvas>    
    </mx:Application>
    I've tried to read this post: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7c5c.html#WS2d b454920e96a9e51e63e3d11c0bf6568f-7ff5
    then I've tried to understand how can I modify and insert the following code to mine, I've tried but doesn't work
    <mx:series>
               <mx:LineSeries yField="profit" displayName="Profit">
                <mx:lineStroke>
                    <mx:SolidColorStroke
                        color="0x0099FF"
                        weight="20"
                        alpha=".2"/>
                </mx:lineStroke>               
               </mx:LineSeries>
               <mx:LineSeries yField="expenses" displayName="Expenses">
                <mx:lineStroke>
                    <mx:SolidColorStroke
                        color="0x0044EB"
                        weight="20"
                        alpha=".8"/>
                </mx:lineStroke>               
               </mx:LineSeries>
            </mx:series>
    can you please help me?
    thanks a lot
    Win 7 64 bits
    Adobe Flash Builder 4.6 Premium

    Well, I'm getting closer.  I have resorted the legend according to the order of the lines on the chart, by doing the following:
    > chart expert
    > data tab
    > select field from "On change of" list
    > Top N button
    > For this group sort "All", based on the same field as I selected from the "On Change of" list, in descending order
    > click OK and OK again.
    Although this worked, I'm pretty sure it's sorting on the wrong year.  I would like the legend to be sorted descending, according to the values in 2010, not 2006, which it appears to be doing.  Any ideas?
    By the way, my apologies if I mislead anyone by saying I have grouped charts.  It's actually an advanced report that is grouped by one of my data fields.  This produces a new chart for each group automatically.
    Thanks again.  I appreciate all offers of help!

  • Using Custom Legend without Using Legend Class for line Chart

    Hi ,
    I m trying to create legend with checkbox without using Legend class of flex, but problem is that how to use itemrenderer of lineseries in the legend.
    My requirement is like this:

    my problemb is how to get that shape and use in container .
    i am using hbox in that i have checkbox ,label and i tried to use Image or IFlexDisplayObject but i am unable to assign that renderer to either  image or IFlexDisplayOBject nothing isd working.
    any suggestion for what component i shall use to assign the itemrenderer of lineseries.
    Thanks for replying

  • Column & Line in a single chart. Ignore Grouping for Line

    Hi,
    Here is the scenario to show a chart for "Resource Allocation to selected Projects and capacity".
    1. Show Staked Columns for Projects<o:p></o:p>
    2. Show Capacity of Resource with Line Chart (both should be in same chart)<o:p></o:p>
    3. Group By Projects(Series Group) and Category Groups By Month.<o:p></o:p>
    Following is the desired out:
    Problem I'm facing:
        I was able to show both Columns and line by changing the chart type for capacity. But issue is that Group By (series Grouping) is applying to Line (Resource capacity) as well. So multiple resource capacity lines are appearing on the
    graph. It would be good, If charts allows to display only one line by summing all group values for resource capacity. 
    So, Can we stop considering group By for line chart(Resource capacity)?
    Below screen shows that how current report displaying.
    Thanks in advance.
    Thanks, Ram

    Hi ram,
    According to your description, I can reproduce the same issue. Since the values in the chart is always relate to Category Groups and Series Groups. The behavior is by design in SQL Server Reporting Services (SSRS).
    In SSRS, chart is similar to the matrix.
    The Columns group in the matrix is identical to the Category Groups area in the chart.
    The Rows group in the matrix is identical to the Series Groups area in the chart.
    The Data area in the matrix is identical to the Values area in the chart.
    Since we add data in the Values dialog box, it is in the Category Groups and Series Groups scope.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Flash line chart change line style.

    Hi guys,
    I am migrating charts in my application from SVG to Flash.
    For line charts in Flash, is there a way to change line style from solid to dashed or dotted?
    Thanks in advance.

    Hi,
    If you're using the new AnyChart then you can using bevel...not sure how its done with the old but it must be possible. Example here: http://anychart.com/products/anychart/docs/users-guide/Samples/Sample-Line-chart-Application-of-different-styles-to-chart-elements.xml
    <effects>
    <bevel enabled="true" highlight_opacity="0.4" shadow_opacity="0.4" distance="2"/>
    <drop_shadow enabled="true" opacity="0.3"/>
    </effects>Mike

  • Bar & line chart together

    Hello friends,
        We have a requireemnt where we need to project Bar & line graph in single chart in ABAP code. We need secondary axis also for line chart. We searched DWDM but could find the chart of our requirement.
    We used Graphic_matrix_3d but it can have only one chart type. If we use chart type as line all the entries in graph will be line. But we need 2 in bar & 1 in line format
    Can you please help!!!!
    Thanks & regards,
    Suresh

    Hi,
    you can look at classes cl_gui_chart_engine or cl_igs_chart_engine and you can also download the SAP chart Designer from SDn-Downloads to draw line and bar chart together.
    Thanks & Regards,
    Sarita Singh Rathour

  • Remove decimal from Line Chart

    I am using custom XML for line chart to control thresholds. On X axis , I want to specify % instead of decimal value. How can I achieve it?
    I changed the below :
    <format><![CDATA[{%Name}{enabled:True} - {%Value}{numDecimals:0}%]]></format>
    But it does not work. Can someone help me?

    Ok, here is the entire custom XML from one of my charts. You will notice that the definitions for the X and Y axis are not in the <data_plot_settings> tag, but are in the <chart_settings> tag which is above the data_plot_settings.
    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <anychart>
      <settings>
        <animation enabled="false"/>
        <no_data show_waiting_animation="False">
          <label>
            <text></text>
            <font family="Verdana" bold="yes" size="10"/>
          </label>
        </no_data>
      </settings>
      <margin left="0" top="" right="0" bottom="0" />
      <charts>
        <chart plot_type="CategorizedVertical" name="chart_3053317050568022">
          <chart_settings>
            <title enabled="False" />
            <chart_background enabled="false" />
            <data_plot_background enabled="false" />
            <axes>
              <y_axis >
                <scale   mode="PercentStacked" maximum="100" major_interval="20" minor_interval="20" />
                <title enabled="false" />
                <labels enabled="true" position="Outside">
                  <font family="Tahoma" size="10" color="0x000000" />
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}%]]></format>
                </labels>
                <major_grid enabled="False"/>
                <minor_grid enabled="False"/>
                <minor_tickmark enabled="false" />
                <line enabled="false" />
                <zero_line enabled="false" />
              </y_axis>
              <x_axis>
                <scale  mode="PercentStacked"    />
                <title enabled="false"/>
                <labels enabled="true" position="Outside" display_mode="Stager">
                  <font family="Tahoma" size="10" color="0x000000" />
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                </labels>
                <major_grid enabled="False" />
                <minor_grid enabled="False" />
                <major_tickmark enabled="false" />
                <minor_tickmark enabled="false" />
                <line enabled="false" />
                <zero_line enabled="false" />
              </x_axis>
            </axes>
            <legend enabled="false" />
          </chart_settings>
          <data_plot_settings enable_3d_mode="false" >
            <bar_series style="Default">
              <tooltip_settings enabled="true">
                <format><![CDATA[{%CategoryName}   {%SeriesName} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,} - {%YPercentOfCategory}{numDecimals:1,decimalSeparator:.,thousandsSeparator:\,}%]]></format>
                <font family="Tahoma" size="10" color="0x000000" />
                  <position anchor="Float" valign="Top" padding="10" />
              </tooltip_settings>
              <label_settings enabled="true" mode="Outside" multi_line_align="Center" rotation="0">
                <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,} - {%YPercentOfCategory}{numDecimals:1,decimalSeparator:.,thousandsSeparator:\,}%]]></format>
                <background enabled="false"/>
                <position anchor="Center" valign="Center" halign="Center"/>
                <font family="verdana_embed_tf" size="10" color="0x000000" />
              </label_settings>
              <bar_style>
              </bar_style>
              <marker_settings enabled="True" >
                <marker type="None" />
              </marker_settings>
            </bar_series>
          </data_plot_settings>
    &P7_CHART_DATA.
        </chart>
      </charts>
    </anychart>

  • Line chart and vertical line repeats according period

    Hej,
    I have line chart and horizontal axis displays many months, thus is possible to vertical line from horizontal axis be displayed after years period and be color diferent?? My example, start displays January 2007,......finish December2007->DISPLAY VERTICAL LINE as LONG TICK, start January2008....and so on... is possible to set such repeater for line chart...thank for response.

    Hi 1234alex,
    According to your description, you want to create a non-vertical target line in top of bar chart to show different target.
    In Reporting Services, it’s impossible to create a non-vertical target line in top of bar chart. Because StripLines can only return a vertical target line even we put expression to make it dynamically . In this scenario, we can show the target line as values
    and use switch() function to specify different values based on different category. Then we just need to change the chart type for that series only. However, it only support horizontal line chart type in Reporting Services, so we suggest you use column chart
    instead of bar chart. Please refer to detail steps below:
    1. On Chart Data region, set an expression looks like:
         =switch(Fields!month.value=”A”,”4”,
         Fields!month.value=”B”,”8”, 
         Fields!month.value=”C”,”2”,
         Fields!month.value=”D”,”5”)
    2. Right click expression in Chart Data region, choose Change Chart type, select a line chart.
    3. Click Preview, the results look like:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Drill Down for Multiple Series in a Line Chart

    Hello,
    I seem to have a problem with the drill-down functionality in a line chart that has multiple series.
    I have a line chart that displays the readings of a patient over a period of 1 month. For each day, there is the glucose level reading, blood pressure reading, etc... So, each reading is a different series in my line chart graph.
    The basic requirement is: With a mouse over event on the chart, I am willing to display all the data that belongs to that day. The data will be displayed at the bottom of the screen in a small panel. It is very simple to do it when the line chart has only 1 series:
    i) Enable drill down.
    ii) Choose 'Row' as insertion type.
    iii) Fill out the destination field.
    iv) Make sure your labels (at the bottom of the screen) get the data from the destination cell.
    When there is more than one series, it becomes very difficult. XCelsius will not let me use the same destination cells for different series. So, I will have to use other destination cells. In that case, I will not know on which day is the user on. Is there any way to achieve this functionality?
    Let me know if you need further information.

    This is certainly possible, but there's a bit of a trick to it (and really hard to explain without screenshots!). There's two halves to it:
    1. Write the date that has been selected to a cell (for each series).
    2. Write the name of the series that was clicked to some cell (this is the property 'Series Name Destination').
    So let's say your three series are Glucose, Blood Pressure and Temp. Have those series names in B1,C1,D1 (with your dates down in column A). Insert a row below the series names (2:2), and then set up your insertion type for the chart as 'row'. The source data (for all three series) should be your list of dates in column a. The insertion cells for the three series will be, in order, B2,C2,D2. Now, depending on which point is clicked in the chart, the selected day will be inserted into one of those three cells. Completely useless unless you know which series was clicked.
    So you need to insert the name of the series that was clicked ('Series Name Destination') into the spreadsheet, let's say in F1. The rest is just Excel formulas. The logic is, you can now tell what series was clicked, and go and look up the date that was inserted for that series, then go and look up the row that corresponds to that date. So to get the date that was just clicked, your formula (in F2) would be =HLOOKUP(F1,B1:D2,2,0).
    Then a VLOOKUP will get the results from that row of data. For example, if I inserted another row at row 3 (to show my 'result' values) the formula in B3 would be =VLOOKUP($F$2,$A$4:$D$13,2,0).
    I hope that makes sense.

  • Automatic Colour settings problem for WAD Chart Column type

    Hi,
    In WAD (BI 7.0) Chart Creation i am having issues with colour settings for Chart item Column type with 3D. I have six key fig in query i am trying to show all KF in Chart. But it is showing only one colour for all keyfigs. atlast  I have manually assigned different colours for different series, but no use... the issue remains same.. Please help me on this issue
    Thanks in Advance
    Regards
    Harsh

    Hi Harsh,
    Please try the following options.
    1. Try swapping the axes. Certain charts follow the YX convention.
    2. Right Click > Edit > Click on 'Refine' > Click on the chart type on the right frame (Bars/Pie etc) > [OK] Vary Category by Color: Enable this checkbox.
    3. If you have finished with these settings, you may switch back to Wizard mode to follow up the settings (Step 3 of 6 - Value Properties)
    4. Under Categories in Wizard, just make sure you are giving options to suit all the Categories in an uniform fashion. To begin with don't bother to give a fixed Category Count. (As your chart size may increase dynamically based on GRID data)
    5. Goto Refine > Click on Global Settings > Choose 'Color Palette' > Tradeshow/Enjoy/StreamLine/Custom : These are the optional themes which may be well adjusted to suit your requirements.
    Thanks,
    Arun Bala

Maybe you are looking for

  • How to register iPhone from old computer to my new one.

    I have sold my old computer and bought a new one now I need to transfer my iPhone info to my new computer. How can I do this? If I try to sync to my new computer it wants to erase all info on phone.

  • How to commit a transaction in Oracle Workflow

    Hi All, Oracle says there should not be any commit in Oracle WF .It is the responsbility of the calling program to Call Commit. I have the following Requirement:- I want to insert a record in one of the custom table, when a record is saved in one of

  • BC4J VSM on OC4J 10.1.2 - jdbc error ORA-00911: invalid character

    Hello, I have been trying to run the Virtual Shopping Mall application on OC4J Standalone 10.1.2. I have deployed the application from a JDeveloper 10.1.2 release. When i try to login the OC4J log presents the following information and login fails: C

  • Date between filter not working

    Hi, I am using Action links to open Report2 from Report1. For my 'Date between' filter (current date and previous two days) in Report2, I previously had 'Advanced SQL' statement but later switched to session variables. Now when I am using session var

  • ASM newly created diskgroup is not being used by RAC10GR2 Database

    Hi, I created new ASM diskgroup by using one of the RAC node through Grid control , it created new disk group successfully , I can see all the diskgroups in Grid control including newly created, but some how data is not moving into newly created disk