Change bars in chart to a specific color

I need to make a single bar in a chart a specific color. I already figured out that I had to separate that bar from the rest of the chart as an overlay but now I cannot even get it to be the exact color that I need it to be. It seems my only color options are the pre-sets that come with Keynote. That seems absurd so I'm assuming there must be something I am missing. 
Can anyone help me out with this please?

OK so it was something obvious. Drag and drop the color. DUH!!

Similar Messages

  • How can I change the text layers to a specific color at the same time and in the fast way?

    Dear all!
    I am using Photoshop CS5. I typed 65 text layers in my file and wish to change their colors to a specific Black Color, but I don't know how to select all the layers at the same time so that I can change all the text layers from Red Color to Black Color in the fast way. Now I only select one layer and then change. It means I must select and change 65 times for the text layers. Hope you can understand what I mean.
    Thanks a lot.
    My Kindest Regards,
    LUCK

    One way is to select all the text layers, select the type tool in the tool box
    and set the color from the tool options bar.
    MTSTUNER

  • How to define specific color for specific data in WebI?

    Hi everybody,
    I wonder how I could connect data shown in e.g. a vertical stacked bar chart to a specific color. The assignment of color in a chart is done by Webi automatically after pulling a a variable to a chart. Later on it is possible to change to color via the color palette. But how can I define a specific color for specific values of an attribute? (E.g. calue is Chicago -> color is blue; value is NY -> color is red.. etc ) Is it possible?
    Does anybody know the trick?
    Thanks in advance!

    Please refer the below links along similar lines .
    [http://www.dagira.com/2007/07/22/alerters-on-charts/]
    [http://www.dagira.com/2007/07/31/alerters-on-charts-part-ii/]
    Regards,
    Bilahari M

  • How can I generate PDF bookmarks for change bars?

    I want to generate PDF bookmarks for text that is marked by change bars when I save as PDF from structured Framemaker 7.1. That way the proofreader can go directly to the pages that contain change bars and proof only that text.

    Adding to Arnis' reply:
    It is also possible to generate PDF bookmarks for change bars through FrameMaker-to-Acrobat TimeSavers + Presentation Assistant, as follows:
    Change bar has to use a unique color, with a known RGB value
    A PDF layer is created automatically based on the specified RGB value, containing all change bars (layer can be set as initially hidden and/or as a non-printing one)
    A generic bookmark can be created automatically for each change bar. Since this is not related to the specific text being indicated, the bookmark text has a user-controlled label, optionally autonumbered (eg "Change Bar #1", "Change Bar #2", etc).
    After setting the different parameters above, the process is entirely automatic (results are present as soon as the file is Save as PDF or distilled into a PDF).
    If this approach is of interest, I can set up sample FM + PDF files.
    A different approach -- based on custom markers inserted, with unique text and note attributes -- resulting in Quick-Access Bookmarks, is discussed/demonstrated at http://www.microtype.com/ImprovePDF06.html .
    Shlomo Perets
    MicroType * http://www.microtype.com
    FrameMaker/Acrobat training & consulting * FM-to-Acrobat TimeSavers/Assistants
    1-hour webinar (free), starting 10am PDT | 1pm EDT | 5pm UTC/GMT:
    Thursday, Sept. 10: Liven up your PDFs with FrameMaker-to-Acrobat TimeSavers/Assistants 
    https://student.gototraining.com/register/8019702938678710980

  • Organizational Chart with specific colors in OBIEE 11g

    Hi Gurus,
    How to create organizational chart in OBIEE? I tried to follow this link Oracle Business Intelligence by Sandeep Venu: Google Organization Chart in OBIEE 11G
    but can't find out how to make specific chart (example chart of manager position) have a red color, the director chart have a green color.
    Please help
    Regards
    JOE

    This requirement sounds like it has a possible solution with some html coding. My idea is to :
    1) Create a dashboard with two pages.
    2) In the first page, create an iframe of the first dashboard.
    3) In the second page, create an iframe of the second dashboard.
    4) Customize the second dashboard page to have the custom background color.
    Please refer to this link on how to customize the dashboard pages: http://www.appsassociates.com/resources/presentations/AA_OBIEE_Customizing_Dashboard_Appearance_NEOAUG_Fall09.pdf
    Please assign points if helpful.
    Thank you,
    -Amith.

  • 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.

  • Action to change specific colors

    I'm trying to create an action to change two specific colors in ~300 different logo files (.ai and .eps). I'm coming from Photoshop so I assume there is a way to create a droplet from an Illustrator Action but that's a different topic.
    The colors are Pantone 143 and 287 which need to be changed to 143 U and 287 U, respectively.
    Here are the steps that I think I need to record for my action:
    Unlock all layers
    Add new colors to swatch board
    Select all layers
    Recolor Artwork... (Edit -> Edit Colors -> Recolor Artwork... This step is not recorded?)
    Save file
    The problem is that the Recolor Artwork step is not recorded. Can anyone explain what I should be doing to create this action properly?

    JavaScript is the answer. I found this somewhere A while back. This script changes Pantone 133 to 101. It can be edited to apply to any other Spot colors.
    This script requires both the old color and the new color exist in your swatches pallette before you run it.
    #target illustrator
    var docRef = app.activeDocument;
    with (docRef) {
              var replaceColor = swatches.getByName('PANTONE 101 C').color;
              for (var i = 0; i < pathItems.length; i++) {
              with (pathItems[i]) {
                        if (filled == true && fillColor instanceof SpotColor) {
                                  if (fillColor.spot.name == 'PANTONE 133 C') fillColor = replaceColor;
                        if (stroked == true && strokeColor instanceof SpotColor) {
                                  if (strokeColor.spot.name == 'PANTONE 133 C') strokeColor = replaceColor;
              for (var j = 0; j < stories.length; j++) {
                        with (stories[j]) {
                                  for (var k = 0; k < characters.length; k++) {
                                            with (characters[k].characterAttributes) {
                                                      if (fillColor instanceof SpotColor) {
                                                                if (fillColor.spot.name == 'PANTONE 133 C') fillColor = replaceColor;
                                                      if (strokeColor instanceof SpotColor) {
                                                                if (strokeColor.spot.name == 'PANTONE 133 C') strokeColor = replaceColor;
    More answers can be found here, such as how to make it unlock everything.
    http://forums.adobe.com/community/illustrator/illustrator_scripting?view=discussions

  • BI graph change bar color

    Hi All,
    I worked on the PJC BI graph, do you have an idea how to change bars color?
    regards

    The best place for information on the BI Graph is the Reports FAQ page:
    http://www.oracle.com/technology/products/reports/htdocs/faq/Graph_FAQ_with_style.html
    It contains a lot of useful tips on how to customize a BI Graph using the XML tags.
    Hope this helps
    Keith Laker
    Oracle EMEA Consulting
    OLAP Blog: http://oracleOLAP.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    OWB : http://blogs.oracle.com/warehousebuilder/
    DW on OTN : http://www.oracle.com/technology/products/bi/db/11g/index.html

  • How do I input a specific color value for a shape?

    I've been trying to figure out why I cannot input a specific color that I want for a shape. I'm not just choosing a color that looks nice, I'm trying to match it to a solid color in the next clip. Ive tried to use the eye dropper to get the color from the next clip but I cannot copy anything outside of the color pallete provided. I know the value of the color (from 0-255 it's R:191, G:211, B:217) but all FCPX has is 0 - 1, which is some other kind of color value system I've never seen before. Does anyone know how I can put that specific color value into the shape generator?

    Click the color swatch to open the Apple color picker. This is common to all Mac apps.
    Click the second tab for color sliders. Change the popup to RGB.

  • Need help in Line bar combo chart - line is not prominent in dashboard

    Hi All,
    I face an issue where the line in a line bar combo chart is not prominent in Dashbords.
    lets say i have 5 reports (all of them are line bar combo charts) in a dashboard. The lines in graph are not prominent or not displayed in usual thickness. But this scenario does not happen always. if i scroll down or up the browser(here i am using IE8) some of the reports displays line in the charts and some does not display the line. when i click on the report then the line will be displayed.
    please suggest whether this is a browser issue ror something to deal with OBIEE itself.
    Thanks in advance.

    Hi,
    It's a bug in obiee11g. kindly download the patch file from My Oracle Support and delpoye it
    OBIEE 11g: Line Bar Combo , With Stacked Chart , The Bar Width Gets Affected [ID 1369493.1]
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Symptoms
    When the chart type is changed from Standard or Default line-bar to Stacked line-bar chart, the bars are reducing their width.
    Line-bar should keep the width of the previous bars.
    However, when vertical Bar is changed to stacked vertical, the bar width remains the
    same. But when a regular Line-Bar is changed to stacked vertical, the width
    changes (reduces, in this case it becomes half the original width)
    Cause
    For dual Y stacked bar graph, the bar width was half of the regular bar width
    because the series assigned to Y2 was given the half of the space also. This is not needed if the marker type for Y2 is not bar.
    The following bugs have been opened to handle this issue
    Reference Bug:
    Bug 12931660 - line bar combo with stacked chart changes its width
    BUG:12931660 - LINE BAR COMBO WITH STACKED CHART CHANGES ITS WIDTH
    BUG:12947990 - BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Bug Ref:
    e.x: applying patch file refer the below file
    http://obieeelegant.blogspot.com/2011/11/how-to-apply-patches-using-opatch.html
    Thanks
    Deva

  • How do I get change bars to appear in Robohelp output?

    I am using Frame 11 and Robohelp 10. I have used change bars to mark source content that I have updated (in Frame). When I import and generate output using Robohelp, however, I don't see any indication that that change indicator is coming across anywhere. I need to be able to indicate content changes visually to my audience. Any ideas about how to do that without resorting to changing the content in Robohelp manually or using different para/char styles in Frame?

    Yes, I need something in finished help. I need to be able to provide a visual cue to the audience that specific text has changed in both the finished paper and the online outputs. I did this in the past by applying gray highlighting via character formatting in Framemaker. Unfortunately, removing character-level formatting peppered throughout a 600-page guide in Frame is tedious, to say the least. Therefore, I am looking for another solution. I was hoping that change bars would work. You can cause them to appear in the finished Frame output, and I figured that when imported into Robohelp there would be a marker or something in the HTML that I could work with. However, I don't see anything to that effect in the HTML in Robohelp. I am using the import feature. Maybe there is another way for me to bring over the content that will include that metadata? Or perhaps there is an entirely different approach I should be using to achieve my objective?

  • For some reason, "HSL" is gone from my develop panel.  I used to be able to adjust specific colors (blues, greens etc) for saturation, luminance and so on.  But that option is now gone from my develop panel.  How do I get it back?

    For some reason, "HSL" is gone from my develop panel.  I used to be able to adjust specific colors (blues, greens etc) for saturation, luminance and so on.  But that option is now gone from my develop panel.  How do I get it back?

    Right-click the title bar of any of the panels in the righthand column of the Develop module (for example, the Basic panel) and choose "Adjustments" from the panel list that appears.

  • I need to replace a color on my image with a specific color from another part of the image.  How?!

    I have spent over 2 hours trying to figure out how to replace a color on one part of my image with a specific color shown on another part of the image.  So far I have been able to go to "Replace Color" on my Adobe Photoshop version, but it seems that I can only change the hue and brightness of the color that it currently is.  I need to use a specific color so this does not help me.  Does anyone know how to complete the task I am referring to?
    Also, please keep in mind that I am using Adobe Photoshop 6.0, not a fancy cs version or anything.  So it's pretty old school...
    Any help/feedback is greatly appreciated!  Thank you.

    Hi brookehelene,
    You might consider making a selection the object and using a color fill layer set to the color blend mode instead of replace color.
    I used the same picture as kendallplant did and changed the color on the same flower by sampling the pink color from the flower to the right)
    (click on the screenshots below for larger views)
    1. Select>Color Range
       (i used color range because the dialog is somewhat similar to the replace color dialog, except one is making a selection instead of replacing a color)
       (there are many other ways to make the selection such as the magic wand, so if your more familar with the other selection tools you can use those instead to make your selection)
    2. Use the eyedroppers and fuzziness slider in the color range dialog to make the selection of the object.
       (in the screenshot below the white areas are selected and black areas are not)
       (your selection probably won't be perfect, but you can paint on the layer mask to refine the selection)
    3. After you press the okay in the color range dialog you'll see the selection (marching ants)
       At the bottom of the layers palette press the Create New Fill or Adjustment Layer icon
       to reveal a list and choose Solid Color.
       Then use the eyedropper to sample a color from your image and press ok.
       Change the Blend mode for the color fill layer to Color (top of the layers palette)
    4. As you can see a lot has been selected besides the flower.
        To refine the areas of color, paint on the layer mask with the paintbrush tool.
        Use white to add the color or black to subtract the color
        You can press the D key on the keyboard to get the default colors (black and white) in the toolbox
        and press the X key to switch between the two when painting on the layer mask.
    Even though the above takes longer you can easily change the color or modify the areas that you want to change the color on.
    To change the color you can double click on the color fill icon in the layers panel.
    You can also use other layer blend modes besides color such as hue, so you might try some of the others and see what they do.

  • Color problem, black 'noise' on specific colors

    Dear adobe users,
    At the moment I have a problem with a few specific colors within photoshop CS6, on top of my original colors you'll see a black noise effect. Some effect you'll suspect when you've turned on a different color mode. But i'm working with the normal RGB/8 color modes which shouldn't be a problem. If i save this document to a JPEG and open it with Windows Preview, the color problems dissapear. Funny thing is, if I get my color picker and hover on a black spot on my original document, the right color shows up in my color picker and not the black color I see on my screen.
    What can cause this problem? Tried google to find the problem, but no luck so far. Driving me crazy as this isnt really working for me. Thanks for the help so far!
    Printscreen of my problem:
    Original document (jpeg):
    Regards
    Marcel

    I'm guessing you have an ATI video card and have updated to Catalyst 13.1 (or gotten the WHQL driver through Windows Update).
    Catalyst 13.1 has a problem properly running Photoshop CS6's GPU-based Adobe Color Engine.  Basically if the red channel reaches 0, all color will be blacked out.
    A workaround that retains most of your GPU functionality but avoids the problem is this:  Change the Drawing Mode to Basic in the Advanced Photoshop GPU preferences.  Restart Photoshop after making the change.
    A possibly more acceptable workaround is to completely uninstall Catalyst 13.1, then seek out Catalyst 12.8, specifically, on Adobe's web site.  12.8 works quite well in Advanced mode.
    -Noel

  • Can I control  the change bar position?

    In my attach file, I want to  control  the change bar position. the "red " change bar position.

    You can move the change bars farther away from the text frame, you can change the color and thickness of the change bars, but you cannot tell FrameMaker where to start and stop a change bar. In your case, FrameMaker is showing a change in each row of the table; hence, each change bar is shorter than the height of the row. This is the way FrameMaker indicates changes in the content of table cells. You cannot change it. You cannot tell FrameMaker to make consecutive change bars in consecutive table rows continuous.

Maybe you are looking for

  • Transfer files from user to user

    How do I set the settings so that i can transfer files from one user to another?

  • Production Version in Material Master

    Hi, I am having problems with this. I need to either change date on a production version or delete the product version. I have tried using a batch input sequence from my program both for changing the date and for deleting the production version and t

  • Macbook and slow wireless connection

    I have trouble reaching high speed when connecting with AirPort to my BT Voyager 2110 router. Connecting with a cable works great. It seems to be a problem many people have that their wireless connection between the Mac and a router gives only a frac

  • Why do you keep alienating your user base with worthless UI changes?

    If it weren't for some add-ons that I've come to depend upon which are not supported in Chrome, I'd have switched long ago. But version 29 is the last straw. If I can't get version 28 re-installed and working again, I'm quitting FireFox for good. You

  • MIGO & MIRO difference

    Dear All, I have created one purchase order with a single line item of 2000 qty. In this purchase order, Transportation & octroi charges are there. I posted 2 GRN's of 1000 qty each. At the time of GRN system has posted a document against each GRN fo