Pie chart: setting colors of series via DBF

Hello,
I am working with Crystal Reports XI on a report that's creating a pie chart from a DBF file.
The DBF, the report obtains it's data from, can contain a variable number of data. Due to this, the number of series, the chart is made up of, cannot be predictet in advance.
Now, my question is:
Is it possible to make each of the chart's series retrieve it's own color from a cell in the DBF file?
In advance, thanks for your help!
Sascha.

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

Similar Messages

  • Pie Chart Legend - colors and sorting value

    <p>Hi,</p><p>I have a pie chart with around 20 &#39;segments&#39; representing names of people - so it looks like several of them have the same color.</p><p>So my first question is do the standard 12 colors repeat after 12 segments have been &#39;defined&#39; - can this be extended with custom colors?.  I know you can set colors for specific values but as the list is dynamic, I can&#39;t do that. </p><p>I also have a legend defined which shows the person&#39;s name and then the value - either a percentage or a count etc.    From top to bottom, the legend lists the entries alphabetically by the person&#39;s name - however, it&#39;s not always easy to tell which name is associated with which &#39;segment&#39; and using labels is not an option as they are too long and there are too many of them to be readable<br /></p><p>So what I would like to do is have the legend displayed in numerical size order - e.g. person with largest % is at the top, smallest % is at the bottom etc.</p><p>I&#39;ve been looking at the Chart Expert, CR Help and the forums but have not seen an answer to either question - I&#39;m hoping someone can tell me if it&#39;s possible or not (and if so, how do I do it!).</p><p>Thanks <br /></p>

    Hi,
    If you go to the Chart Expert, on the data tab, you can choose the Top N option. From within there you can get your legend sorted based on the highest or lowest percentage. You can also group information so that you only see the top 5 or lowest 10 or whatever you want.
    Also when I create a pie graph based on 20 plus pieces of data it isn't resusing the colors, but they are somewhat similar. I usually do a group of the top 10 or so, then have an others category for situations like this.Â
    Rody

  • Pie Chart - Adding Colors

    I have created what should be a simple pie chart, with 8 pieces to the pie. I chose the following options for my chart: "Chart Colors, 3D Texture Fills, Fun." Unfortunately, only 6 colors are showing up. I have tried every way I can think of to add colors and have been able to physically change colors on the chart - but not with "Texture Fills."
    Any help out there for this?
    Thanks,
    rlbier

    True the Chart color option only offers 6 colors however you can set colors using the color palette.
    Open the color selector:
    +Menu > View Show Colors > select a color sample > drag onto a wedge+
    Repeat for all the wedges.
    You will have to redo all this if you change the chart type, so leave till last after you have sorted out the overall appearance.

  • Anychart pie chart - setting colours to match output (RAG)

    Hi,
    I have a table detailing outstanding issues each with a traffic light status of either red, amber or green. I would like to create an anychart pie chart whose colours match their status to give an easy visual representation of the data.
    I have managed to get it working if there's data in the table for each status type; I've used customised colours in the pie chart and used ORDER by in my SQL (the order of the customised colours listed to match the order of the SQL output), however, if one of the status' has a null value, the colours are assigned Amber 1st, Green 2nd and Red 3rd meaning that if there are no issues of Amber status the green status issues will be amber in colour on the pie chart etc.
    Is this possible to assign specific colours and if so how can I do it?
    I'm working on Apex 3.2.1.
    Thanks in advance

    I've managed to sort this now.
    In case anyone is interested, I created a view that would display the totals for each RAG status including a 0 if total is null and then set custom colours for the pie chart in the order to match the SQL output (i.e. A (amber) first, G (green) second, R (red) third). Simple but it works for my needs.

  • Pie Chart Sector Color

    Hi,
    I am using below query to create a flash pie chart. It return count of "RED" , "GREEN" and "YELLOW" from the color field
    I used the custom color to color first value as "RED", second as "GREEN" , and third as "YELLOW"
    select  null link,
                color ,
                count( color ) value
    from table;Above is working fine if all RED , GREEN AND YELLOW ARE GREATER THAN ZERO.
    Now if there is no RED in the filed, then PI CHART contain only two region one for Green and second for Yellow.
    Problem :--
    If red is not there the value representing the count is green is show in red color.
    How to avoid this
    Thanks
    Shijesh

    Hi Andy,
    I tried the above method but its not working for me..
    here is the query which I am using..
    DECLARE
    vqry varchar(5000);
    begin
        vqry := 'select link , LABEL , sum(value) from
    (select null link, ''Red'' LABEL , user_id , COUNT(SR_PROJECT.PROJECT_STATUS_ID) value
    from  SR_PROJECT where SR_PROJECT.PROJECT_STATUS_ID=1 and
    SR_PROJECT.CURRENT_STATUS_ID NOT IN ( 5 , 6) group by user_id
    union
    select null link, ''Green'' LABEL , user_id ,COUNT(SR_PROJECT.PROJECT_STATUS_ID) value
    from  SR_PROJECT where SR_PROJECT.PROJECT_STATUS_ID=2 and
    SR_PROJECT.CURRENT_STATUS_ID NOT IN ( 5 , 6) group by user_id
    union
    select null link, ''Yellow'' LABEL , user_id , COUNT(SR_PROJECT.PROJECT_STATUS_ID) value
    from  SR_PROJECT where SR_PROJECT.PROJECT_STATUS_ID=3 and
    SR_PROJECT.CURRENT_STATUS_ID NOT IN ( 5 , 6) group by user_id )';
    if :P50_PROJECT_OWNER <> 0 OR :P50_PROJECT_OWNER <> NULL THEN
        vqry := vqry || ' where USER_ID = ' || :P50_PROJECT_OWNER;
    END IF;
    vqry := vqry || ' group by  LABEL ,link';
    return vqry;
    end;I'm using Function Returning SQL Query. Is this the reason why I'm not able to get the result

  • Pie chart slice color

    Hi otn ,
    using JDev 11g 11.1
    i have status table
    SELECT DocStatus.ID,
    DocStatus.DESCRIPTION
    from DocStatus
    and 6 status inside (inprogress , not finish yet , finished , last date ,finished after due date , x)
    and i have a view object to represnt a table to dispaly docs report
    also a view object to dispaly pie chart
    SELECT
    COUNT(DOC_TRANSACTION.TRANSACTION_STATUS) TRANSACTION_STATUS,
    DOC_STATUS.DESCRIPTION DESCRIPTION
    FROM
    DOC_TRANSACTION,
    DOC_STATUS
    WHERE
    DOC_TRANSACTION.TRANSACTION_STATUS = DOC_STATUS.ID
    the requirment is to display pie chart with this color for status (not regular) ( inprogress --> yellow , not finished yet --> red,finished-->green,last date-->white,finished after due date-->blue,x-->brown)
    any one can help ?
    Edited by: nour3eny on 21/11/2009 02:00 م

    the following article shows the integration of jfreechart with oracle adf/jsf in a very simple and elaborate manner. I found this one very useful.
    http://oracle-latest-technology.blogspot.com/2010/02/creating-chart-in-oracle-adf-using.html

  • Cuic report - pie chart static color bug (CSCul65722)

    Hi,
    I would like to know the fix release plans for the bug CSCul65722. 
    Thanks & Regards,
    Guna.

    Hi Guna,
    please raise your question at the contact center:
    https://supportforums.cisco.com/community/5926/contact-center
    you are in the ServiceGrid Support forum, unfortunately we can't answer this question.
    If you like to learn more about ServiceGrid i'm happy to help you.
    best regards
    Patrick

  • How to assign specific colors to itemcolumn in pie chart?

    I'm trying to figure out the CF pie chart specific color
    assignment to specific distinct values, i.e. a specific color is
    assigned to a specific status value so we have consistency across
    diff charts; say value PASSED is always GREEN. Help? any idea?
    thanks

    Ashka, thanks for reply, unfortunately it didn't help. I do not have "shadow" option ticked anywhere. If I do tick the shadow, an additional shadow also appears, so this shadow is somehow built into the pie-chart by default. No matter what font of color I pick that shadow is there.
    Here is a screen-shot:
    http://www.piccdrop.com/images/1227030290.png
    Thanks for your help.

  • Is there any way to scroll pie chart labels

    is there a way to have a scroll bar for the pie chart key
    Many thanks

    Hi,
    I haven't found how to make legend scrollable but I can suggest to put list box with color alerts. The listbox will  show each series of pie chart and color alerts will indicate the color of each slice.
    So, simply instead of using pie which can't support scrolling in the legend put listbox which supports it.
    In addition, I believe you have already been asked for showing values on each slice of piechart. On this week, service pack 3 have been released. By using this service pack, you can start to show values on the charts.
    Pavel

  • Pie chart legend total does not calculate correctly

    Hi All
    I have a pie chart in a CR 2008 report (SP0). 
    The pie has one "On Change Of" and one "Show Value" field.
    The datasource for the report is an Oracle 10g (Rel 2) Stored Procedure (SP).
    The SP signs the value per each transaction (record), so if the txn is a reversal is will arrive in the report as a negative value
    The records that are listed in the report have the correct sign on each line, and totals in the report are correct
    So, if the first record has a value of 10,000 - these would be known as Cash txns
    and the second record has a value of -5,000 - these would be known as Cash Reversal txns
    The report total will be 5,000
    In the legend entry of the pie chart the values per series are being displayed correctly.  There is a series per Txn type (so one series represents Cash txns, the second series represents Cash Reversal txns)
    From the example above my pie shows 1 txn for Cash @ 10,000
    and 1 txn for Cash Reversal @ -5000 (it has the negaitve amount in brackets)
    But the total in the legend is 15,000
    I cannot figure out why that the legend total is not calculating correclty.
    Has anyone seen this behaviour before?
    Any help would be great thanks
    Best regards
    Patrick

    Just realised why....  The total is counting all txns, and my formula is not telling it that Reversal should be subtracted - duuhhhh!!!!

  • ActiveX pie chart range limit

    I have a problem with creating a pie chart using ActiveX that seems to be related to the range. When I give it a source of 8 cells (source 1) the pie chart works fine (Right Pie). If I give it 9 cells (source 2) the pie chart data has 9 series instead of the 1 it should have (Wrong Pie). If I go into Excel I can correct it manually. I have been using this sub VI for a while with no problems but always with fewer than 8 cells. 
    I am using Excel 2007 version 12.
    Attachments:
    M-51539-001 Create Pie Chart.vi ‏108 KB
    Right Pie.JPG ‏124 KB
    Wrong Pie.JPG ‏114 KB

    Attached is part of the sub-vi where I am having the problem. I tell Excel which cells to use for the pie chart. If I use "Source 1" (8 cells) the pie chart is created successfully. If I use "Source 2" (14 cells) the pie chart only uses the first cell. I can go to the Excel file and select all 14 cells manually and the pie chart displays correctly. I also tried 9 cells with no luck, it seems that 8 cells are the limit. I am trying to find what is causing the limitation. I have also attached the sub-vi. 
    Attachments:
    Pie chart block diagram.JPG ‏61 KB
    M-51539-001 Create Pie Chart.vi ‏108 KB

  • PIE Chart Color Highlight - setting colors

    Hi
    PIE Chart showing default colors even after setting the diffent colors to OIE chart slices from Color Highlight tab.
    PIE chart is showing only one slice when I select Data for the PIE Char is "For all records".
    Could you please let me know how to set the different colors for slices?
    Thank you

    hi,
    As you are selecting 'Color Highlight' for different Pie Slices,  "For all records" option shouldn't be selected.
    It should be "On Change of".
    Then obviously you will see the colors specified in 'Color Hghlight' tab.
    Regards,
    Vamsee

  • Regarding standardization of Colors in Pie chart Categories

    Dear BI Experts,
    I have an issue regarding Pie Charts in the WAD. When we have 5 categories defined in the Pie chart and each category has got its own defined color.
    <b><u>issue no 1:</u></b> It is very difficult to go to each cahrt and select the colors for each chart in each category. Is there any place where we can define the colors in common?
    <b><u>issue no 2:</u></b> When we have the data for all the categories it is doing good. In case of data not available for any purticular category the color defined for that category is coming for the next category. which shud not happen.
    Is there any chance of solving this?
    Anyone please help me in this concern. Very much awaited.
    Regards,
    Kishore.

    Bhanu,
    Sorry about the late response ... connectivity issues....
    As for the color issue - you would have fixed colors to each series ... and when there is no data for one of them then that particular series is absent which would mean that the next series would take its place.
    Example :
    Original query -
    4 categories with 4 colors
    If one of the categories does not have data then the query would have 3 categories and category 4 would take the place of category 3 and hence the issue of the colors...
    I was not able to simulate the same however ....
    1. If you had the same data set in Excel - are the colors proper- any Standard data set / BeX chart
    2. Is there anyway you can fix the number of categories by way of restricted Key figures etc ? then if that category is present in the query even if there is not data the colors should be maintained.
    Arun
    Hope it helps...

  • Automatic Fill colors for Report Builder pie charts and graphs are too repetitive and hard to differentiate

    I have pie charts or other graphs that show multiple results (7-20).  I set the "fill" colors to Automatic so that the results are dynamic (I don't want to specify a color for each result because I will then be limited that those results--I
    prefer it to be dynamic).
    I noticed that once you get above 4 or 5 results, no matter which palette is used, the "automatic" colors are so closely similar that it is hard to differentiate which color pertains to which result (group).  For example, you could have a
    reports that breaks the results into age groups like 1-18, 19-21, 22-25, 26-30, 31-41, 41-50, 51-65, 66-80, and 81+.  By the time you review the results, there's likely to be 3 pairs of colors (or more) that are so closely similar that you can't
    tell them apart (2 shades of yellow, 3 shades of blue, 2 shades of orange, or green, or teal, or purple or whatever).
    Is there a way to use Automatic for the color scheme (I don't care which color pertains to which category) but also specify to not use colors that seem to bleed together (so that someone viewing the report can actually tell the difference)?  Using SSRS
    2008 Report Builder, if it makes a difference.

    Hi JNehman,
    Reporting Services provides a list of predefined, built-in palettes that you can use to define a color set for series on your chart. All built-in palettes contain between 10 and 16 color values. You cannot extend the built-in palette to include more colors,
    so if you need more than 16 colors, you must define a custom palette.
    A custom palette let you add your own colors in the order you want them to appear on the chart. A custom palette is especially helpful if the number of series in your chart is unknown at design time. For more information, see
    Define Colors on a Chart Using a Palette (Report Builder and SSRS).
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Default Colors of Pie Charts

    Dear all,
    we are very happy with the default colors of the pie charts in Oracle BI 10.
    After migrating the catalog to 11.1.1.5 the colors has changed to very dark color types.
    Is there an option to switch back to the old colors of a pie chart?
    Regards,
    Stefan

    Hi,
    Have a look at this blog: http://shivabizint.wordpress.com/2011/04/17/setting-default-graph-series-colors-in-obiee-11g/
    Regards

Maybe you are looking for

  • FCP does not work after sleep - asking for quartz extreme card

    Hi all, Well my 2 x 2.266 Dual Core Intel xeon with 5 gig memory is getting a little long in the tooth and I have started coming up against what I suspect is hardware issues. The OSX is 10.5.8 It has a blackmagic HD card as well as an ESATA rocketrai

  • Time to improve...

    Hewwo everyone... I lately finely got my hands on the Lumia 800... I'm quite satisfied with it, but also disappointed... I was excepting a bit more... First, we lately blamed Nokia for the battery life... I'm an old Symbian user and new to WP7, but b

  • SEM: BCS Balance Carry Forward - Concept of Period 00

    Gurus: Wants to clear a concept with you. Say for example at the end of Period 12, 2006, B/S Account 1: $100,000 Retained Earnings: $ 200,000 And only for the Period 1, 2007: B/S Account 1: $200 (this is a periodic value) And Net Profit: $15 Now let’

  • Book Preview and Adjustments

    This issue has been somewhat covered in other threads (see for example <http://discussions.apple.com/thread.jspa?messageID=5397022>, <http://discussions.apple.com/thread.jspa?messageID=5807886> and <http://discussions.apple.com/thread.jspa?threadID=1

  • I have changed from a hub 4 and dongle 600 to hub ...

    My speed has dropped from Down 75.4 Up 16.5 (hub 4 and 600 dongle) to 23Down UP 3.98 (Hub 5 and 900 dongle). What is going on? John Solved! Go to Solution.