Highlight single data bar in chart

Hi - I'm wondering if anyone has figured a non-complicated way to to change the color on only ONE bar of a single data set in a bar chart.
Thanks!

Hi timarland,
Numbers uses a single colour for each series of data. Each series is listed in a single column.
Try moving the datum you want to show in a different colour one column to the right, leaving its cell in the 'regular' column empty.
Select the original column(s) and the extra one, then choose the stacked bar graph (second item) from the Charts button's popup menu.
Regards,
Barry

Similar Messages

  • Single stacked bar chart

    Hi Guys,
    I have the below mentioned data that I want to represent in a single stacked bar chart.
    Dept Name               No. of Managers
    A                                        5
    B                                        2  
    C                                        3                                            
    I want the chart to look like the one shown below.
    Legend:
    Yellow - Dept B (20%)
    Blue - Dept A (50%)
    Green - Dept C (30%)
    Could anyone please help me achieve this in Dashboards 4.1?

    The series display the segment based on the values you pass to the chart, I hope you are looking for the percentage to highlight here. This is not possible you can change the color of the series and you can maintain a text to define the color code as you described above.

  • Highlighting  Source Data When Chart is been moved to Another Sheet?

    Hi,
    I know that when a chart is chosen, it's corresponding data becomes highlighted when the two (table and chart) are on the same sheet. Is there a way to highlight the data when the two are on separate sheets, so one could toggle between the two sheets and make changes as necessary? I know I can move the chart back to the data sheet, make the changes and then move it back again to its own sheet. I have to do this, anyway, if I want to crop the chart (without deleting data) or shift the data in the chart to the right by a column or two, for example, but it would be so much nicer, if I could just highlight the data 'remotely' from the chart, so-to-speak. I have a couple of other reasons for wanting to do this also:
    (1) I make my charts almost full screen size, so moving them back to the data sheet cuts them off (tough to see any changes without scrolling or shrinking the chart).
    (2) I have multiple data tables on one sheet with multiple charts to complement the data tables. Putting all the charts and data on the same sheet can make for one very untidy sheet no matter how big the screen.
    I've looked around on the forum and in Numbers Help, but found only one reference to moving charts to separate sheets. Unfortunately, it didn't address this particular issue. If I can suggest this to the Numbers developers, where can I go?
    Thanks!

    Hello
    The only workaround that I found is to use an auxiliary table in the sheet where you display the chart.
    In this auxiliary table the used formula is:
    =Feuille 1 :: Tableau 1 :: A
    Yvan KOENIG (from FRANCE mercredi 27 février 2008 16:00:7)

  • Highlighting a single data point in a scatter plot - Numbers'09

    Is there a way to highlight a single data point on a scatter plot in Numbers'09 (or point to it using a line from each respective coordinate on the x & y axis).
    I don't think it matters but the data point i am looking to highlight is the [highest y value/2]... and of course its respective x coordinate once you plug the y value into the equation ( y = f(x) ) and solve for x.

    Here is my own tip :
    As you see, I use two sets of values.
    In the second one I define only the yValue of the data point which must be "highlighted".
    Yvan KOENIG (VALLAURIS, France) jeudi 10 février 2011 20:49:32

  • External XML data for more charts in a single page

    I am using a plot chart which gets data from an external XML file through <mx:HTTPService>
    I create another chart in the same page which also gets data from another XML file.
    How can i provide data to this chart through the HTTP Service ?
    - Sen

    I hope i've understood well what you want to do.
    Easily you could define 2 different httpservice with different url and bind them to chart.
    hope this help!
    bye!

  • How to configure optimal data connections to allow excel to retrieve multiple data sets form a single data source

    Hi all,
    I would like to have a data connection file used by excel to extract data form a SQL Server DB (so that change in location of the DB needs only a change to the  single data connection file). The excel file will retrieve data from only a single database,
    but there are multiple queries (30+) stored on SQL server that are used - each SQL server views' data is returned to a pivot table in an excel worksheet, which has an associated chart with various slicers on the main dashboard worksheet.
    Do I need a seperate data conenction file for each SQL server query being retrieved, or can a single connection file be created as all data comes from a single database?
    (all my attempts and research on the net have led me to believe that a seperate file is needed for each view, but this seems unnecessary)

    Hi, im learning my way with this, so apologies if I am providing too much or too little info.
    There are 8 source files which are very loosely related in that they capture infromation regarding what has happened within a metro railway over a day. However there are only a few relationships between the contents of tehse files.
    These tables are imported into SQL Server using SSIS where I have developed a number of views that query these 8 source tables to generate a number of metrics to provide insight into the service provided to the passengers. Some examples of metrics are: Number
    of passengers in transit at any given time, time taken to travel between adjacent stations, how much power was used during the day, what distance did the trains travel during the day, etc. Some views provide only a handful of rows, some provide 1M plus. There
    are now approx 40 seperate views created.
    I have then used a spreadsheet with a worksheet associated with each SQL server view. Each worksheet is set up as a pivot table, which allows the related chart on the main dashboard worksheet to use standard excel capability to slice and present the data
    in different ways.
    At the moment if the server on which teh database is stored moves, I have had to recreate the spreadsheet from scratch as I dont know how to change the connection information in any other way. Ideally I would like to have connection info in a single place
    to reduce ongoing maintenance, particularly as I would like to place the spreadsheet on a SharePoint server to distribute it to other users.
    Thanks

  • Can we print an array of dates on the chart X-Axis?

    Hi,
    I have a requirement in which I have to print all the dates in the selected date range on the chart axis even though I donu2019t have the data for all the dates in my DB.I did not find any direct solution in Crystal Report Designer (2008, XI) except we can use "time scale" option in axes tab of chart option but this option also does not provide the required behavior completely.
    After implementing this option I get the date range on chart but from the date I have data in the DB and to the date I have the data in the DB.
    For Example, though I have selected the date range from 2nd April to 8th April, dates in the chart are starting from 5th April since I have the data in the DB of 5th April and 8th April.
    To overcome this limitation of crystal report I thought of creating an array of dates of the selected date range. I can create the array of dates in crystal report but donu2019t know how to use this array in chart to show the summary data.
    I also want to base my Group on this array since I want to show all the dates in group even with count zero.
    Thanks & Regards,
    Amrita

    Hi Sourashree,
    I am using the following formula to create an array of dates.
    numbervar dateDiff:={?eDate}-{?bDate};
    dateTimeVar array dateArray;
    numbervar i;
    for i :=1  to  7 do
        redim preserve dateArray<i>;
    if(i=1) then
        dateArray<i>:={?bDate}
    else
        dateArray<i>:={?bDate}+i;
    This formula is a print time formula since when I specify "WhileReadingRecords" array remains blank (I have confirmed this by returning any single value from the array).
    I can not base my Group and Chart on any Print Time formula since these two get calculates at read time.
    Can you please let me know if there is any other way of creating the array at read time? Or should I create the array in main report and then pass it to sub report?
    Regards,
    Amrita

  • LineChart data tip won't display with single data point?

    Hi,
    I have a Flex 3 LineChart with LineSeries which use CircleItemRenderer. If there is only a single data point to display, the data tip is not displayed. If there are several data points, each data tip is displayed correctly.
    How can I make the datatip appear correctly with even just one data point? Any workarounds for this problem?
    Quick googling found that I'm not the only person with this problem. A suggested workaround is to use PlotChart instead, but I don't want to go there unless there is absolutely no good way to solve this problem directly.
    http://www.pubbs.net/200911/flex/28102-flexcoders-line-chart-data-tips-dont-display-when-t heres-a-single-data-point.html
    Thanks for any clues!!
    BR,http://forums.adobe.com/people/sikkfgkwwsdfkjkjwjfhjdskj
    sikkfgkwwsdfkjkjwjfhjdskj

    No one wanted to help me but I figured out that I was not referencing the DSN on the test server, only the local DSN. 
    The information to connect to the MSSQL database given by my hosting company was not correct for Dreameweaver (or MS Access) either.

  • Little help with complex XML data as data provider for chart and adg

    Hi all,
    I've been trying to think through a problem and Im hoping for
    a little help. Here's the scenario:
    I have complex nested XML data that is wrapped by subsequent
    groupings for efficiency, but I need to determine if each inner
    item belongs in the data collection for view in a data grid and
    charts.
    I've posted an example at the bottom.
    So the goal here is to first be able to select a single
    inspector and then chart out their reports. I can get the data to
    filter from the XMLListCollection using a filter on the first layer
    (ie the name of the inspector) but then can't get a filter to go
    deeper into the structure in order to determine if the individual
    item should be contained inside the collection. In other words, I
    want to filter by inspector, then time and then tag name in order
    to be able to use this data as the basis for individual series
    inside my advanced data grid and column chart.
    I've made it work with creating a new collection and then
    looping through each time there is a change to the original
    collection and updating the new collection, but that just feels so
    bloated and inefficient. The user is going to have some buttons to
    allow them to change their view. I'm wondering if there is a
    cleaner way to approach this? I even tried chaining filter
    functions together, but that didn't work cause the collection is
    reset whenever the .refresh() is called.
    If anyone has experience in efficiently dealing with complex
    XML for charting purposes and tabular display purposes, I would
    greatly appreciate your assistance. I know I can get this to work
    with a bunch of overhead, but I'm seeking something elegant.
    Thank you.

    Hi,
    Please use the code similar to below:
    SELECT * FROM DO_NOT_LOAD INTO TABLE IT_DO_NOT_LOAD.
    SORT IT_DO_NOT_LOAD by WBS_Key.
        IF SOURCE_PACKAGE IS NOT INITIAL.
          IT_SOURCE_PACKAGE[] = SOURCE_PACKAGE[].
    LOOP AT IT_SOURCE_PACKAGE INTO WA_SOURCE_PACKAGE.
            V_SYTABIX = SY-TABIX.
            READ TABLE IT_DO_NOT_LOAD into WA_DO_NOT_LOAD
            WITH KEY WBS_Key = WA_SOURCE_PACKAGE-WBS_Key
            BINARY SEARCH.
            IF SY-SUBRC = 0.
              IF ( WA_DO_NOT_LOAD-WBS_EXT = 'A' or WA_DO_NOT_LOAD-WBS_EXT = 'B' )     
              DELETE IT_SOURCE_PACKAGE INDEX V_SYTABIX.
            ENDIF.
    ENDIF.
          ENDLOOP.
          SOURCE_PACKAGE[] = IT_SOURCE_PACKAGE[].
        ENDIF.
    -Vikram

  • Data Format on charts

    Is possible to get Decimal Places UP to x on chart properties data format?
    I can change this property on criteria column, but If I want to change Vertical Axis Labels, Data Labels...only can change decimal places from 1 to 6...but I would like to select UP to 2.
    Changing xml advanced code with minDigits=2 to minDigits=0 and maxDigits=2...doesn't work.
    Add an image: http://imageshack.us/photo/my-images/840/dibujoins.jpg/
    Any solution??
    Thanks!

    In a pie chart, the whole 'pie' represents 'all of the data graphed'. 
    In percent, that's "one hundred per cent", or "one hundred per hundred"
    As a fraction, the whole circle represents 100/100, or 1/1 or 1.00 — all of which mean "one whole thing".
    Smaller portions are written as fractions of the whole, with the 'whole' fixed at 100 (percent) or 1.00.
    So a 20 pence piece represents 20/100 of a pound, which is 20 percent of a pound, or may be written as a decimal as 0.20 pound.
    One pound is 1.00 pound, or 100% of a pound.
    A 10 pound note is 10.00 pounds, or 1000% of a pound.
    And getting into the range of values on your Chart 16, 455 pounds is 455.00 pounds, or 45500% of one pound, which, as you can see, is correctly represented on the chart.
    Here's a pair of charts, and the table that feeds them. Same data as in your example, but with the Y axis scale showing the raw data numbers on Chart 1, and the fraction of the total (1146) that each amount represents on the chart 2.
    Formatting the Y axis labels to show percent doesnt change the values. The numbers are multiplied by 100, and the % sign is attached to show that these are the number per hundred. For chart 1, where the current scale takes no account of the total, converting to percent doesn't make sense.
    For Chart 2, with the current scale, the four bars show (approximately) 0.2, 0.3, 0,4 and 0.1. Altogether, that's 0.2+0.3+0.4+0.1 = 1.0
    Converting Chart 2's Y axis values to percents changes the labels on the four non-zero lines to 10, 20, 30 and 40%. The four bars now show 20, 30, 40 and 10 percent. Add those up and you get 100% (which is always the total percentage of 'the whole thing'.
    Regards,
    Barry

  • Export the data of a chart to Excel format

    I developed Histogram and Bar diagram in java Graphics2D pkg. I want to export the data of the chart in Excel format so that the file can be opened in Excel tool.

    Is this something that might help....
    <!-- Loop through the range to create a poplist -->
    <%
    java.util.ArrayList alDepartments = new java.util.ArrayList();
    %>
    <select name="DepartmentId">
    <c:forEach var="listEntry" items="${bindings.DepartmentsListView1.rangeSet}">
    <c:set var="thisdept" value="${listEntry.DepartmentId}"/>
    <%
    //<c:out value='${listEntry.DepartmentId}'/>
    String strThisDept = ((Number) pageContext.getAttribute("thisdept")).toString();
    System.out.println( strThisDept );
    alDepartments.add( strThisDept );
    %>
    <c:choose>
    <c:when test="${listEntry.DepartmentId eq bindings['DepartmentId'].attributeValue}">
    <option value="<c:out value='${listEntry.DepartmentId}'/>" selected="true">
    <c:out value="${listEntry.DepartmentName}"/>
    </option>
    </c:when>
    <c:otherwise>
    <option value="<c:out value='${listEntry.DepartmentId}'/>">
    <c:out value="${listEntry.DepartmentName}"/>
    </option>
    </c:otherwise>
    </c:choose>
    </c:forEach>
    <%
    session.setAttribute("sessionalDepartments", alDepartments );
    %>
    </select>

  • Setup of endeca servers for single data domain / low traffic

    Hello,
    We are planning to have a single data domain that will be rebuilt nightly using a scheduled Integrator run. It will be used by, at most, 20 people at a time (more like 1-2 at a time) via EQL calls through one web app server within the same firewall/secret zone.
    One or two people may also interact with the domain via Studio. I have 3 servers available. The idea presented so far is to install Endeca Server on servers 1,2, and 3, and to put Studio on 1 and 2, and Integrator on 2 and 3.  What is the best configuration to go with as far as clustering and load balancing between the web app server and the three Endeca servers.
    Can the EQL queries be simply directed to the server with the leader node. Do I really need a load balancer between the web app server and endeca servers ( like this proposed config.)?
    Thanks in advance for any help!

    Disclaimer: I don't work for Oracle.
    I simply don't think this is true. 
    1) Oracle has never said this on paper, I think it's something that someone said off-hand once and it seems to have spread like wildfire.  Everytime I hear that statement from a partner or a prospect, they can never tell me the origin.  It's a popular myth, maybe because it's a round number? 
    2) Quite simply, in our experience, the number of records is not the right metric in most use cases due to the columnar nature of OEID.  The number of assignments is much more of a driving factor than the number of records. 
    3) Also, given that this rumor has been going around for at least 2 years, even if it were true then, it's not true any longer if you think about how much the software has changed since 2.2.
    If you have enough bare-metal hardware (memory, I/O, CPU), I don't foresee 100 million records as a barrier at all.  If these 100 million records are each 5000 attributes wide, then you're going to need more hardware than say 100 million records with 15 attributes.
    Patrick Rafferty
    Branchbird

  • Cann DSC x-bar R chart vi be configured for real time charting

    I have an extensive vi written to perform automated testing on my product (pump).  I am collecting pneumatic & electrical performance at multiple load points and intend on charting x-bar & R charts for each individual pneumatic test point and electrical test point.
    The VI for x-bar & R charting has an input that requires a 2-dimensional array.  The data that I intend to supply to the chart is my 1-dimensional array containing the results from my sub-group. (I will be collecting data for 5 units out of every 20 initially)
    The help is not real clear on what is required in the 2-dim array and so I either need to understand better what it is expecting or how to change it to accept a 1-dim array of data.
    Any assistance wiht this is much appreciated.
    Thanks
    Doug
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

    OK  Got the binary write and read figured out (mostly)  The issues I ran into were more what I would call syntax related, like having to use the open vi and set file position vi to complete the appending write vi but then not using the refnum from the write to feed the file info to read vi instead having to feed the original file path again.
    I found another thread that gave a good example on decompiling (my word) the array info from the cluster format that the read vi generated back into an array format and in fact, it ended up taking my 1D array and after all the functions, turning it into a 2D array that was ready to feed into the control chart vi.
    I have posted a snapshot of the code so that if there is any really bad form that I am using, I am open to making it more efficient.  I kow that my method for pulling the desired variable out of the original subgroup results clusters is a little cumbersome but it does work.  I may make part of that routine into a subvi just to better organize this vi.
     Hopefully the attachment is clear enough to be readable.  Could not figure out how to paste it directly into the post.
    My only open item now is on the file read, setting it up to read only the most recent 25 (or some number) of data sets.  Since my data set size should never change once I am running, I am expecting that on my first write to a new file, I can read the file size and determine what the value will be for each data set and then with some math, complete an offset and set position before performing the read.
    If this doesn't sound correct, I am open to other options for sure.
    I do have another issue that has cropped up that I am struggling with that I will mention briefly but will start a new thread as it is not relted to this issue but am mentioning it in case anyone reading this thread has any insights.  That is essentially sending command strings to a serial connected power supply using TQLP library functions. Details will be in a new thread.
    Thanks for the continued assistance
    Doug
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."
    Attachments:
    Analysisvi.pdf ‏129 KB

  • Why can I not highlight single words in a pdf document with Adobe Reader for Android?

    I, like other users I have seen, am unable to highlight single words or phrases in pdf files.  I am using a Galaxy Note 10.1 tablet.

    Hi,
    Welcome to Adobe forums.
    Please see : http://helpx.adobe.com/acrobat/kb/print-comments-acrobat-reader.html
    I hope this will help you.
    Please let me know, if you need any more help on this.
    ~ Aditya

  • Display Data on waveform chart or XY graph over a long period of time

    Display Data on waveform chart or XY graph over a long period of time
    Can anyone help?
    I am acquiring data from an Ni DAQ card with the following parameters - sample rate = 12800, number of samples = 4096. I want to extract order information so as to track changes in the amplitudes of certain frequency harmonics. So I use the sound and vibration toolkit to extract this information as shown in the attached Vi.  I will like to plot the resulting amplitudes against real-time starting at the time the Vi was run.  I really want the display to show these changes over long periods (eg. days, months and even years).
    Problem.
    I have tried to plot the Y component of the resulting magnitude for a given order on a waveform chart. My choice of the waveform chart is because I also want to display  alarm limits (using the mask and limit vi) (I can't have these lines displayed on an XY graph plot).  I tried adjusting the scale offset using the property node and setting the offset to current time. However, the display on the X-axis can only show a span of  2 minutes as will be seen when you run the attached vi. I want the time display on the x-axis to be over a period of  days, months  and even years.  Is there a way to set the maximum scale on the x-axis to be say a year or so in future.
    I really want the display to be like the one in in the second attachment.
    Attached is a sample VI created using an Ni USB 9234 DAQ card. Any card will do but I am only getting the signal from one channel for this example
    I will appreciate any help that can be given to me.
    Thanks
    Attachments:
    Real-Time Graph Display.vi ‏170 KB
    Sampe screen1.doc ‏37 KB

    Long term testing can be tricky- and we'l get into that later.  Lets start with the basics that you have wrong.
    The vi as you have constructed it has only one memory element, the chart history length (default is 1024.)
    You can change the number of points the Chart will remember by Right-clicking the chart an select Chart History Length from the menu.
    But for a long term test - and one where you want to REMEMBER the first value you need a memeory element that is independant of the application.  Your PC WILL loose power or need to be rebooted eventually.  Heck it might even need to be replaced! you really need to store your data in a file. Preferablly in a file that is backed-up on a regular basis so you don't lose every point of data if the PC dies.  It realy hurts when you have to restart a 2yr test because you've lost the 18months of data you collected.
    For an application like this I would seperate my "collection" and "Evaluation" operations. 
    Have one vi that takes the reading and writes it to a file at a configurable rate  You may want 1reading  per minute for seveal days then 1 per hour for a few weeks- then maybe only once or twice a week for the next couple of years since you are looking for LONG TERM stability.  having too much data to evaluate can take a lot of digging to find the few things that interest you (but always take more that you think you need)
    Have another utility that COPIES the files, reads them and displays the data you are interested in that day.  The data you want to look at won't change over time HOWEVER, you WILL want to analize it in different ways depending on what the data trends look like.  Having seperate routines for collection and display allows you to update the display style and analisys without even stopping the collection vi (much less editing the vi)
    Jeff

Maybe you are looking for

  • Loop in any Table of Record

    Hi Somebody know how can I to do a loop in Table in any table record ? I want to build a Generic Procedure or function tks

  • DVD data doesn't fit DVD.

    Hi. I authored a DVD which fits inside the 4.7 GB, but Encore reports that "The estimated project size is larger than the target media chosen. While this is an estimate, the project may fail to build." Check Project window doesn't show that the DVD e

  • Draft Mode

    Hi     I am saving delivery as Draft Mode , in delivery i have 2 UDF in which i have implemented fms query , fms query searches from document in draft tables and update these 2 UDF's , which gets refreshed when document total changes . Problem i am f

  • Visitor Details in HR Module

    Hi , How to maintain visitor data in HR with minimum details. The visitors details to be maintained without employee number.

  • Some critical errors in Planning, Business Rules and FR

    Dear All, I am facing some critical errors in Hyperion Plannign 11.1.1.3. We did the migration of BR rules from one server to another server. Migration went well. When i running any one of the rule, it throws the below errors: If i run any one of the