Controlling Hierarchy Chart Colour Series

Hi SDN,
Our customer produces Charts for data as part of Hierarchies .
Now it is possible to control the colour of series, if we are talking about single line series. 
But is it possible to have a Characteristic with hierarchy attached in front of another characteristic in the query.
Then what happens, is the hierarchy node/leaf gets cross multiplied by the second characteristic.
So when the chart is produced, you may have a hierarchy node X n times, which means you want to classify this as a series, and have this all the same colour.
I find the web allocates a new colour for each line.
Would this be possible.
Thank you.
Simon

We can achieve this using table class interface in BW3.5
Example
method data_cell.
  call method super->data_cell
    exporting
      i_x                   = i_x
      i_y                   = i_y
      i_value               = i_value
      i_display_value       = i_display_value
      i_numerical_scale     = i_numerical_scale
      i_numerical_precision = i_numerical_precision
      i_currency            = i_currency
      i_unit                = i_unit
      i_alertlevel          = i_alertlevel
      i_is_sum              = i_is_sum
    changing
      c_cell_id             = c_cell_id
      c_cell_content        = c_cell_content
      c_cell_style          = c_cell_style
      c_cell_td_extend      = c_cell_td_extend.
  data: li_display_value type rsr_pnnn.
  data:
     lv_len type i,
     lv_replace_value type char40,
     lv_with_value    type char40.
  if i_value lt 0.
if i_value > 0.
*break-point.
    data:
    amount type p decimals 2,
    correctamount type p decimals 2,
    chars(5) type c value '1.005'.
    correctamount = chars.
    write i_display_value to lv_replace_value
      no-sign decimals i_numerical_precision.
    condense lv_replace_value no-gaps.
    if i_value < 0.
      concatenate '-' lv_replace_value '</a>' into lv_replace_value.
      condense lv_replace_value no-gaps.
      lv_with_value = lv_replace_value.
      replace:
        '-'    with '(' into lv_with_value,
        '</a>' with ')</font></a>' into lv_with_value.
    else.
      concatenate lv_replace_value '</a>' into lv_replace_value.
      condense lv_replace_value no-gaps.
      lv_with_value = lv_replace_value.
      replace '</a>' with '</font></a>' into lv_with_value.
    endif.
    concatenate '<font color=red>' lv_with_value into lv_with_value.
    lv_len = strlen( lv_replace_value ).
    replace lv_replace_value(lv_len) with lv_with_value
      into c_cell_content.
  endif.

Similar Messages

  • Important, I cant seem to find the hierarchy chart for Sony - For a research paper

    Hello,  
    College student and a PS3 gamer. 
    I need a hierarchy chart for Sony - For a research paper
    Thank.
    Solved!
    Go to Solution.

    Hi J D,
    Welcome to Sony Community!
    Unfortunately, Information about educational research or reports cannot be provided online. I would recommend the book "MADE IN JAPAN," written by Akio Morita (our founder) as an excellent resource for both the history of Sony and our products. You may also want to visit the following website for a detailed presentation of the company history:
    http://www.sony.net/SonyInfo/CorporateInfo/History/SonyHistory/
    You may also wish to review our Annual Financial Report at:
    http://www.sony.net/SonyInfo/IR/financial/ar/index.html
    If my post answers your question, please mark it as "Accepted Solution".
    Thank you for your post.

  • Sumary report chart colours

    is there a way to change the chart colours in the summary report. The default colours that are assigned to the selection, are not very intuitive. If you had a question that gave a range of five possible answers ranging from poor to excellent, the colours sequence that is applied is blue, purple, orange, red, green.
    could the author be permitted to change the colour scheme, with a colour pick tool or something.

    Thank you for taking the time to tell me something I already know, I have submitted it as a future feature request, but it was not included, I guess it was rejected as a not good enough feature request to be worthy of a vote.
    Could you at least consider the way the colours are assigned automatically, so they at least run in some sort of logical order. I understand that there has to be a vivid difference to highlight the field rsponses, but it just looks wrong. When the responses run from '1-Good' to '5-Bad' for example; Good would be Blue, and Bad would be Green, I would think 1-Good would be GREEN and 5-Bad would be RED, Or is it just me?

  • Charts: fixed series formatting

    Hi there,
    following scenario:
    I use a column chart in order to display 12 months rolling values (ACT, BUD, PY).
    Initially only one column (ACT) is shown per month.
    I have got three checkboxes (ACT (always checked), BUD, PY) that allow the user to display additional values per month.
    A query with three key figures (ACT, BUS, PY) in rows serves as datasources. In the properties of the chart "ACT" is selected initially.
    Using the checkboxes a script adds the additional values by using "setDataSelection".
    Now my problem:
    I need to have fixed series formatting with regard to colors. That means ACT should always be blue, BUD red and PY grey. Independent from selected checkboxes.
    If the user checks in the following order ACT - BUD - PY everything works fine. If he e. g. then unchecks "BUD", PY appears red and not grey.
    It would be great if anybody has a hint.
    Thanks a lot in advance
    Mark

    Hi Mark,
    I am not sure if this is possible directly, since a lot of Flexibility is there in the Chart component(in terms of changing the type dynamically, settind data selection etc.) the chart is built in such a way that the Data series colour is based on the no. of series and not the Series name
    If this is a complete necessary specification, then you have a workaround,
    If ACT is always shown, then create two charts
    1) Create a chart with 1st series as Blue, 2nd as Red, and third as Grey.
    2) Create a chart with 1st series as Blue, and 2nd Series Grey,
    Scenario 1: ACT & BUD: Chart 1
    Scenario 2: ACT & BUD & PY: Chart 1
    Scenario 3: ACT & PY: Chart 2
    If even ACT is controlled by Checkboxes, things will be a bit more complicated.
    Regards,
    Fazith Ali Z.

  • SSRS colour series expression help

    Hi, I have created a graph in SSRS which measures the number of appointments booked against a target.
    The expression for the appointments series is:
    =Switch(Fields!DateCol.Value <= Today(),RunningValue(Count(Switch(Fields!SubCategory.Value = "Booked Appointment - System",Fields!NoteId.Value)), SUM, Nothing))
    And the target is simply:
    =RunningValue(Avg(Fields!Target.Value), Sum, Nothing)
    I have coloured the target line in black but I was wondering if it is possible for my appointment series line to be green if above target and red if below target?
    I've never tried this before so any help would be much appreciated!
    Thanks.

    Hi SRidgley,
    Could you please try to provide more details information according to the questions below to help us better understand about your requirements:
    What is the chart type you are currenttly using?
    If possible, please try to provide the snapshot of the chart in the view mode
    Could you please also provide some details information about which field you put in the "Values","Category Group" and "Series Group" and if possible, please provide sample data for me to test.
    I assumed that you have the similar requirements as in the thread below, please take reference:
    https://social.technet.microsoft.com/Forums/en-US/4310fd02-ef84-4874-b11e-993ff2943f6f/how-to-display-the-actual-reading-alone-the-dot-and-conditional-change-the-color-of-the-dotfigure?forum=sqlreportingservices
    If you still have any problem, pelase feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • HT3347 Scatter and line charts - multiple series?

    Is there a way of having more than 1 series on a scatter chart, or a way of removing the line in a line chart, leaving only the data points?

    you have control over many aspects of how a chart is presented through the Charts inspector.  You can open the Inspector by selecting the menu item "View > Show Inspector" OR click the Inspector button in the toolbar:
    You can adjust the number of series in a scatter chart by clicking the chart, then changing the highlighted area in the data tables by grabbing the circle at the bottom right of the data and dragging as needed to add or remove data:
    Finally, with the inspector open, you can change many aspects of the chart:
    There is a Free Users Guide which you can download from:
    http://support.apple.com/manuals/#productivitysoftware

  • SSRS show trend chart over column chart per series groups

    Need help in designing following report in SSRS, where I have a chart report with 2 category grouping fields and 1 series group field (as with category grouping, the reason being, i need to show columns in group of 4 joined together based on their grouping
    on top) .
    Below are my queries
    1. how to show my category grouping values on top of chart (showing group in different color) and series grouping values on bottom of chart (under each bar)
    2. I need to show trend line over each series group data.
    For example, First category group is over hotel name, second category group is over room type (deluxe, executive & suite) and one Series group over week number (for a month report), and the chart value is total occupancy (per hotel per room type per week
    number). Now for point 1, Hotel name and room type needs to be on top of the column (total occupancy) chart, where a week iteration number (1,2,3,4 for a month) at the bottom of the chart under every column.
    And for point 2, I need to show trend line per room per week occupancy was improved or not.
    Regards, Sujay

    Hi Sujay,
    According to your description, you want to display the two category group values at the top of the total occupancy value. Also you want to create a trend line over series values.
    For your first requirement, you can specify the Label data as a combination of two category group values and total occupancy values. Then change the location of series group value legend. Please refer to below screenshot.
    For your second requirement, you can add additional total occupancy values to the Chart Data panel, then change the chart type as Smooth Line.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Problem with mouse-over value on a column chart (by Series)

    Hi.
    First of all thanks for any offered tip.
    I am having a problem with a column chart.
    When I move the mouse over a column it should show a small pop-up (or tip) with the column name (series name) and the value (series value). The problem is that it displays an extra '1' just like the following:
    SeriesName
    1
    X.XXX
    How can I remove the extra '1' and only show the name and the value ?
    The data is populated by series (manually added).
    Mihai.

    Hi,
    Thanks for the tip Shanthakumar KA.
    Yes. It looks like the '1' is coming from the X Axis labels. The chart that I have built does not require any labels on the X Axis, so this was not set (X-Axis labels: Empty). I tried setting this to an empty cell, but the '1' still appears in the mouse-over tip.
    It is very weird. If I leave the X-Axis labels empty, I still get the '1' displayed which is very annoing.
    Are there any solutions for this except the re-building the tip with a label a.k.a. '[customize the mouse over values|http://xcelsiusandme.blogspot.com/2009/07/xm-sample-7-customizing-mouse-over.html].'
    Regards,
    Mihai.

  • File path control - browse button colour/color

    I can't change the colour of the browse button on a file path control. I'm using LV 8.5, but I think I have the same problem on 7.1
    Is the only way to change the colour to customise the control? Every other part of it seems to take colours from the tools palette.
    Thanks for any pearls of wisdom.
    Jon.

    I am able to change the path browse button color in 8.51 are you trying to change the button color or the color of the folder on the button.  To change the buttoin color use the paint tool and make sure you hit the space bar so you are painting the left color (Background color I cant remember which is which).  This probably doesnt work on system buttons.
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Chart Multiple Series - Line/Column Alignment

    In one of the pages from the charting section of the Adobe's
    online Flex help,
    http://livedocs.adobe.com/labs/flex3/html/help.html?content=charts_types_12.html#227567
    there's a picture near the top showing a line chart overlaid
    on a column chart, and the endpoints of the line segments are
    centered horizontally within each bar.
    There are two code samples later in the page showing similar
    charts, but the bars are only half as wide as they are in the first
    picture, and the result is that the line segment endpoints coincide
    with the right edges of the bar instead of the bar centers.
    I'm wondering how to produce a graph like the first picture.
    I tried different combinations of columnWidthRatio but nothing
    seemed to help. If I add more line series to the examples, the bars
    become thinner, as if the ColumnChart determines the bar width
    according to the
    total number of series, not just the number of column
    series.
    I thought about trying to add an ItemRenderer to the
    ColumnSeries, but it seems that should be an easier way. Any ideas?
    --Bruce

    Stumbled across the answer here:
    http://tech.groups.yahoo.com/group/flexcoders/message/83539

  • Chart colours in numbers for iPad.

    Why is it that when I create a new spreadsheet using templates, do I get different colour options for charts etc? I don't see any theme settings and I can't find any way to change the colours to the ones I like. If I create a spreadsheet from the blank template I don't see a way to set any themes to get the nice textured coloured graphs etc. I take it the only way to get the results I want would be to use a template with my favourite colours and just delete everything and start again?

    Don't type the two letters "nu" but the three "ios" ones.
    You will get two entries :
    iMovie for iOS
    and
    iWork for iOS (which is ridiculous because this product doesn't exist).
    Clicking on this late entry you will enter a community grouping questions upon the three apps.
    Click the button "Refine this list" to restrict to Numbers.
    I already asked the forum staff to change this odd behavior so that
    typing nu offer Numbers 4 iOS
    as well as Numbers 4 mac OS
    And of course, same request for Keynote and Pages.
    Wait and see.
    Yvan KOENIG (VALLAURIS, France) samedi 25 juin 2011 12:08:36
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    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 !

  • Chart duplicating Series results in too many legend items

    I've created an item for this on bugs.adobe.com - https://bugs.adobe.com/jira/browse/FLEXDMV-2258
    My client requires this in order to finish the application I am working on so I'm hoping someone has a workaround or suggestions for me.
    The forum would not allow me to attach my jpg and mxml file but they are available on the bug url above
    Copied from the bug:
    My application has a collection of machines, each of which has the same properties. I want to graph those properties, but organize them by dates (the values of the properties are different for different days). So the y axis items are dates, and each date has a cluster of machines. Each date has the same number of machines and each machine has the same properties. The issue I'm having is that I want each property (in the example there are 3 properties, represented by BarSeries) to have the same color for each machine in each cluster. So overall, there should only be 3 colors and the legend should have 3 items. Instead, the chart creates different colors for each machine (represented by a BarSet), so there are 3 (machines/BarSets) times 3 (properties/BarSeries) which gives 9 colors and 9 items in the legend. I'm looking to have 3 colors and 3 items in the legend. I was hoping there would be a property on BarSet or BarChart to specify to share BarSeries among the BarSets rather than it forcing unique instances of BarSeries for the BarSets. I tried storing just 3 instances of BarSeries (one for each property) and assigning each BarSet.series property to the stored array of BarSeries, but the outcome was that it would only display one item for each cluster rather than 3.
    Thank you for any suggestions!

    The legend isn't the only problem.  The BarSets are being rendered with different colors for each BarSeries when I want each BarSet to have the same set of colors.

  • Line Chart Ignoring Series That Starts With a Null Value

    I have a flash chart that was working fine until APEX was upgraded to 3.1
    The chart is 2D Line. Each series represents a discrete year (2006, 2007, 2008 etc.) and the X-Axis is the month (Jan to Dec) and the Y-Axis is the sales amount for that month.
    The year 2006 is the first series and values begin in May so the Jan to Apr values for that series are null (but displayed as Zero before the APEX upgrade), with APEX 3.1, now the 2006 series does not display at all. The other series (that have values from Jan onwards) all display fine. Nothing else has changed except the upgrade to 3.1
    How can I get my 2006 series to display again other than entering zero values for the Jan to Apr months?
    Thanks in anticipation......
    Ollie.
    Is there anyone who is an APEX chart guru who can help with this?

    HI
    To remove the blanks at the beginnging and the end of a string use trim()
    if(lineText.trim().startsWith("script_category")

  • Excel 2010 bug -- cannot place controls on chart properly after changing paper size

    I have encountered unexpected behavior in Excel 2010 when placing controls on a chart that is a separate sheet. The issue is that the controls (e.g. spinner, scroll bar, etc.) cannot be placed or moved to the right side or the bottom.
    Steps to reproduce:
    1) create a chart as a separate sheet
    2) change the paper size to, for example, A6 (4.13" x 5.83")
    3) change paper size back to Letter (8.5" x 11")
    4) controls cannot be placed on right side or bottom of chart.
    It appears that instead of using the current dimensions of the chart paper size to determine where controls may be placed, the smallest dimensions that have ever been applied to the chart are used.
    I am looking for a workaround for this issue since I would like to use a paper size large than 8.5" x 11", but I cannot place controls on such a chart properly at this time.
    Any ideas?

    I have found a workaround for this issue:
    1) change paper size in your default printer's preferences to the paper size you want in Excel.
    2) afterwards insert or create the chart. It is automatically the correct paper size, and controls can be placed or moved properly.
    3) change default printer paper size back.
    In case your chart has already been created, simply copy the existing chart in step 2 instead of inserting/creating.
    Aidan
    Edit: credit to http://webdesignerpark.blogspot.com/2013/02/paper-size-to-set-your-default-paper.htmlfor the idea on changing default paper size.

  • Powershell Excel Chart - change series colors

    I have a Powershell script that reads values from an Excel sheet and then creates a chart based on the values. The script works but I want to change the colors of the series in the bar chart. In VB (using an Excel macro) the code is as follows:
    ActiveChart.SeriesCollection(7).Select
    With Selection.Format.Fill
    .Visible = msoTrue
    .ForeColor.RGB = RGB(17, 17, 17)
    .Solid
    End With
    Based on what I read Powershell doesn't process RGB colors so I tried using one of the default colors:
    $wb.ActiveChart.SeriesCollection(5).Format.Fill.ForeColor = "black"
    Whatever variation on this I try seems to make no difference to the color of the bar chart series values. Is it even possible to change the colors with Powershell?

    Hi,
    Based on my research, the below code should be used to change chart forecolor, please give it a try:
    $chart.SeriesCollection(1).Points(1).Format.Fill.ForeColor.RGB = 255
    More details please go through the below link:
    http://learn-powershell.net/2012/12/24/powershell-and-excel-adding-a-chart-and-header-filter-to-a-report/
    Regards,
    Yan Li
    Regards, Yan Li

Maybe you are looking for