Creating floating bar charts in Numbers '09

I have what seems a fairly simple requirement, but can't quite work out how to do it in Numbers...
I have a set of price ranges (quotes) and I want to put them on a graph, so I can see at a glance how they they tend to fall.
Ideally, I'd like the X axis to be price and the Y axis to be basically nothing - each quote gets its own line.
So I'm after a stack of horizontal bars indicating the from - to price range.
It doesn't seem that this should be too onerous, but I simply can't spot an appropriate graph type.
Anyone?

I am trying to picture what you mean but I can't seem to. But I'll give it a shot.
EDIT: I wrote all this then re-read your post and this isn't what you were asking for. Oops.
All charts (graphs) need X's and Y's, though the Y's could be all be the same constant value. So the data you need to plot is a column of quotes (X data) with a column of 1's or checkboxes (Y data) next to it. I am guessing that you want your quotes to be spread across the X axis, not spaced evenly like they are in the bar charts. Otherwise you probably wouldn't be asking. You have two choices on how to do this.
First way:
If you can create a list of evenly spaced quotes in the header column (A) with a column (B) of checkboxes next to it, you can use a bar chart. You would put a check next to any quote you want to appear on the chart. So you might have a column with quotes of $1, $2, $3, etc with checkboxes next to each which you can check/uncheck. This probably isn't practical in this case but I don't know your data so I'm throwing it out there.
Second way:
Have a non-header column (B) of quotes and a corresponding column of 1's. Create a scatter chart. This will give you data points, not bars. In the Chart Inspector, Series tab, click on Advanced and add error bars to the Y axis. Make them negative only and 100%. Set the data point symbol to None. Then go to the Graphic Inspector and change the error bars so the line type is a straight line, the width is greater, and the color is what you want. This still isn't a bar chart but it is more like one.
There are variations on the second method. You can remove the Y axis gridlines and value labels so you have a single horizontal line (the X axis). You can plot 0's instead of 1's and make positive, fixed value error bars.
Message was edited by: Badunit

Similar Messages

  • Diverging stacked bar chart in Numbers?

    Am looking for instructions on how to create a diverging stacked bar chart in Numbers. I can create this type of chart in Excel, but I want to provide the instructions to someone else who uses Numbers.  For an example, see figure 3 on this page: http://realnumeracy.wordpress.com/2013/12/11/diverging-stacked-bar-charts/  Thank you in advance!

    Create a table where the first row is a header and the first column is a header.
    To make a header select the row(or column) then use the contextual menu to convert to a header:
    similar procedure for a row.
    Enter the data for your chart.
    select columns B and C by clicking the column header for column B, then shift-click the column C.
    Now select the stacked, horizontal bar chart from the charts menu:

  • How to create stack bar chart on answers that shows % and counts?

    Hello guys
    I currently have a table that have several columns, each column represent one product name, and one column name "units" indicating how each product is sold...
    The requirement is to create a chart view with stack bar that shows the percentage of each product''s unit sales.
    Now we are discussing whether we should customize the table to consolidate all these product columns into one "product desc" column with all the product names as row in order to fulfill this requirement..
    PLease let me know whether this is needed or not... ALso, how would I be able to create stack bar charts that shows the total sales against each product sales in percentage and counts?
    Please let me know, I really appreciate it

    I tried to do this and was a bit successful. I used the paint catalog. Created a a request with 6 columns assuming units and dollars be stacked and Year ago units to be a line:
    Brand Units Dollars 0 Year_Ago_units 1
    Added a new request (Combined with similar request and selected paint subject area): Now in this request my columns are:
    Brand 0 0 Year_Ago_Dollars Year_Ago_units 2
    Assuming Year_Ago_Dollars be standard in your case.
    Created a chart view with brand and 1 on x axis and Units, Dollars, Year_Ago_Dollars on y axis and line as Year_Ago_units.
    Now able to see what I am expecting. May be you need to tweak a bit more according to your requirement.
    Let me know if this is of any help!
    Thanks.
    Edited by: Venkata on Sep 30, 2010 12:11 PM

  • Line connecting two bars of a floating bar chart

    Hi All,
    I am using floating bar chart for one of my functionality showing flows over time...
    I need to draw one dashed line connecting two bars ..
    Attaching the image for reference ..
    Pls guide me how shd I achieve this ...
    Thanks

    Morning Art,
    I hope you had a good weekend.
    Yes! I know what you mean because I have the same issue. If for example there is one record out of 10 records, the chart fills the whole width of the page with blue rectangle within the chart, and showing 1 on the x-axis (one big blob of blue colour within a chart).
    It looks very bad though I didn't find any solution to the problem either. however if I do, I will let you know.
    Regards
    Jehanzeb

  • Creating a bar chart with XY graph

    Hi
    I want to create a simple bar chart in LabVIEW. I have tried this using the VI attached which give me the graph shown in current.bmp. However I want it to look like the image (modified in "paint") shown in requred.bmp.
    Any ideas?
    Thanks
    Scott
    Attachments:
    bar chart.zip ‏22 KB

    Hi Scott,
    fake it by making 2 points instead of one :-)
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    current.vi ‏10 KB

  • Creating a Bar Chart that hard?

    Post Author: hzppby
    CA Forum: Charts and Graphs
    I've been struggling with trying to create the correct Bar chart on my crystal report XI. Status field = Open, ClosedSeverity field = Routine, Critical, Severe.I'm just trying to get the chart to look like this, the status field and severity field i'm pulling from ODBC database..

    Post Author: V361
    CA Forum: Charts and Graphs
    I have CR XI, This should get you started.  in the Chart Expert (data tab) On change of dropdown, use Severity and Status, in Show Value(s) use sum of count, then to get the orders correct, click on the severity selection, click on order, select specified order, pick the selections in the order you want them to appear, you will need to do this with Status as well, to get the colors, click on the color highlight selection and add a highlight for Open and one for Close.

  • How to create a bar chart in java

    hi,
    i want to draw a bar chart in a java application can anybody suggest any package with all sufficient information to draw a chart
    manish

    using jfreechart, the code will be like this:
        public ChartPanel BarReport( int month, int year, String typeBarChart ) {
            JFreeChart chart1;
            DefaultCategoryDataset dataset = new DefaultCategoryDataset();
            dataset.setValue( 5, "Value", "Kobe Bryant" );
            dataset.setValue( 6, "Profit", "Kobe Bryant" );
            dataset.setValue( 9, "Value", "Paolo Maldini" );
            dataset.setValue( 7, "Profit", "Paolo Maldini" );
            dataset.setValue( 10, "Value", "Thierry Henry" );
            dataset.setValue( 8, "Profit", "Thierry Henry" );
            dataset.setValue( 9, "Value", "Maradona" );
            dataset.setValue( 5, "Profit", "Maradona" );
            dataset.setValue( 3, "Value", "Beckham" );
            dataset.setValue( 12, "Profit", "Beckham" );
            chart1 = ChartFactory.createBarChart3D( "Comparison between Salesman",
                    "Salesman", "Achievement", dataset, PlotOrientation.VERTICAL,
                    true, true, false );
            ChartPanel panel1 = new ChartPanel( chart1 );
            return panel1;
        }

  • Create a Simple Bar Chart - Numbers

    I would like to create a bar chart in numbers that totals line items by month and displays a bar chart by month.  Column A has dates associated with the other columns of the spreadsheet running horizontal.  Does the charts functionality have a tool that would count by month, or is there a formula that can be used, or would applescript be needed to run the count?
    hope this makes sense.  Thanks in advance.

    Thanks for the response.  So the simplest view of the chart is below.  I would like to have a bar chart that would just total line events by month.  From the below example, august would have 2 and september would have 1.
    Let me know if you would need more information.
    Date
    Time
    Company
    Job
    8/18/11
    9:00 AM
    Company A
    8/20/11
    9:00 AM
    Company b
    9/20/11
    9:00 AM
    Company c

  • Normal/stacked bar chart problem

    hi,
    i have created a bar chart which has 2 bars for each customer. (the customer is on the x-axis). how i did this, is i created two formulas and placed them in the 'show value(s)' box in the chart expert.
    however, what i want to do is to have one bar for each customer subdivide. If i change the type of chart to 'stacked bar chart' each customer has one bar and that bar is subdivided. But I want each customer to have 2 bar (which i have at present) and want one of those two bars to be subdivided.
    How would i go about doing this? (if it can even be done(?) )
    thanks
    J

    Here's my result with six values in a single series. I double clicked the last bar to change its colour from the default grey (which was visible) to magenta.
    Numbers 2.0.3, iBook G4, OS X v10.4.11
    (Shot in the dark:) Try double clicking the value label, then changing the order position of this item.
    Regards,
    Barry

  • Any known issues with DateTimeAxis with Bar Charts?

    Not column charts. I've seen plenty of simple ones for that. I'm using a floating bar chart with custom bar rendering to give the user an option of fill color.
    Right now the issues I'm facing are:
    -min/max values aren't being properly set by the chart
    -padding doesn't stay consistent with larger date ranges
    -dateTimeAxis labels do not wrap over a year change properly if only the month/year are scaled in the axis labels. (for example, if the label units are scaled to month/year (2/10 and 12/09 as end and start dates respectively), then the labels go from 2/10 (from origin of axis) to 12/09 instead of the other way around, the proper way.
    If these are known bugs in Flex 4 Beta 2, please let me know! If you have any ideas of how I might solve these problems, please let me know!
    Thanks.

    First, I apologize this took me so long. I was pulled elsewhere for a while on the project. Second, I couldn't post a sample as the conditions of the sample would require too much work and time. This is just a small part of a very large project.
    I will lay out some cases and describe simply what you may not immediately see within the context.
    Min Max Manually Set with custom padding
    I created a custome padding ratio to give a better result since with the min and max manually set the padding wouldn't scale properly.
    Min Max left to flex with only one item in the dataprovider
    Notice the ranges... if you look above, the items min/max dates are not as small as below. Ignore the extra y-axis, this was my error when creating the reduced screenshot.
    Padding Case - Min/Max not set
    As you can see, this padding is not "2" padding. Not only that, but if you'll notice the padding on the right is much smaller than on the left.
    Year Wrap & Padding Case - Min Max manually set
    Using Math.min(), Math.max() I find the min/max and set it manually. You'll notice the padding is no longer working at this scale as it doesn't scale properly now even with min/max set properly.
    Year Wrap Case - Min/Max set
    Here you see the year wrapping over. It should be the other way around. There is no custom label function and the dates are all correct because if you look at the other examples you'll notice that a year only label (Above) will display properly and a month/day/year label (Below) will display properly.
    Year Wrap Case - Month Example
    Padding Case min/max manually set:
    You'll notice that you can see the red bar below. This is because I have manually set the min and max so the range is visible.
    Padding Case no min/max set:
    For one reason or another it creates boundaries for the last item added and not all the items in the chart. This occured only for the first bar it would seem. If you rendered it with a two day inward difference between the first and second op, it would make the first item disappear.
    If you need more examples, I can provide them. However, this was pretty thorough for the cases needed.

  • Y-axis on bar chart showing all zeros

    I have created a bar-chart in version 1.6 -- and the y-axis values that correspond with the gridlines all show 0.000. The graph is representing the cost/pound so the values will never be whole numbers and always less than 1. The data point values are all correct.
    The data label format is 9.999 and shows up correct.
    The Y axis format is the same way --
    Define axis interval: Y axis interval is 0.05 with min: 0.000 and max 0.250.
    What is wrong?
    Regards,
    Jeff

    Is this an issue with Html DB? 1.6? Has anyone else had this problem?
    Any help would be appreciated.

  • Bar charts- can bar start at a point greater than zero?

    I would like to create a bar chart where data for each category covers a range. Is there a way in Numbers to start a bar chart at a value greater than zero and extend for a defined amount? For example, start the bar at 70 and stop at 200?
    I can do this in Excel, but haven't found a way to do it in Numbers yet. Any ideas?

    Yes. Select the chart by clicking anywhere on it. Then click on the Inspector icon in the Tool Bar. In the Inspector pane which opens, click on the Chart symbol in the row of icons across the top of the pane; the Inspector pane changes to show Chart properties. Look down the pane until you see Value Axis Format which shows 3 white boxes. In the first box, type the value you want your chart Value axis (the chart vertical axis) to start at. In the second box, type the value you want for its upper limit, and in the third box, type the number of steps you want displayed on your axis. E.g. Minimum = 200, Maximum = 800, Steps = 3 will give a chart axis which starts at 200 (a supressed zero), ends at 800, and shows 3 values (400, 600 & 800) in addition to the base value of 200.
    Hope this helps,
    Ian Mathieson.
    U.K.

  • Problem with Stacked Bar Chart

    I have a problem with a stacked bar chart in Numbers 09. My chart is a single series with 6 categories. All of the categories have different values. The first 5 categories display correctly. However, the last category does not display in the color its supposed to, but rather shows up as white/background instead of the grey color shown on the legend. However, the value label is displayed in the proper place.
    When I select other chart types (pie, regular bar, or regular column) the category shows up like it's supposed to.
    This is kind of annoying since I would rather use stacked bar instead of a pie chart. Is there an upper limit on the number of values it can display as a stacked bar chart? Is this just a bug? Thanks!

    Here's my result with six values in a single series. I double clicked the last bar to change its colour from the default grey (which was visible) to magenta.
    Numbers 2.0.3, iBook G4, OS X v10.4.11
    (Shot in the dark:) Try double clicking the value label, then changing the order position of this item.
    Regards,
    Barry

  • Bar Chart with Drill Down

    Hello,
    I have BI Publisher 11 and BI Desktop version installed.
    I created a Bar chart thriugh RTF template and uploaded, its working fine.
    I want to create a drill down on each bar in the chart, which will allow me to pass respective value and open a detail report for that Bar value.
    Has anyone tried it?
    Any pointers would be highly appreciated.
    regards
    Nikhil

    Hi Runali,
    Sorry for late reply,the issue was not solved .
    Got another issue in BI launch pad .
    one Webi report migrated from R2 environment to BO 4.1.when open that report in BI launch pad
    working perfect but when report was edit in the query level and run the all queries its asking context selection
    If i selected all the context and run all the queries then again getting another issue.
    Why its asking Query Context in Query prompt level?
    Thank you
    Sudhakar M

  • Help required in order to produce a bar chart

    Hi,
    I want to create a bar chart. The first column I have is a label - the year. The second column is a frequency.
    If I highlight both columns, I get both variables plotted as values against the same y-axis. If I highlight just the frequency, I get that plotted, but have Untitled as the label for each column.
    I'd like a bar chart with each column labelled with the label in the first column. Can you take me through the steps needed to achieve this?
    Many thanks,
    Tris.

    Hello
    As I'm not really fluent with English, I tell you that detailed explanations are given in the Help in a chapter entitled: "About Charts"
    As values must be in a header to be used as labels
    and
    as a header can’t be used to display values defined by a formula,
    it’s necessary to use an auxiliary table in a mixed way.
    I assumes that we have a table containing most of our datas. I name it « main »
    I use an auxiliary table named « 4chart ». In this table the column A is a header one.
    As it can’t display formulas, the year values are typed here
    A1 2007
    A4 2010
    In the main table, the block of cells we want to chart is C3 :D6
    In C3 enter a formula grabbing the value of aux table’s A1
    C3 =4chart :: A1
    fill down until C6
    In D3 thru D6 I enter the values.
    Back to the auxiliary table.
    enter the formula
    B1 =main :: D3
    fill down from D3
    thru D6
    Yvan KOENIG (from FRANCE dimanche 27 janvier 2008 15:18:57)

Maybe you are looking for

  • Maximum Spreadsheet size on iPad

    Dear All Please let me know what is your maximum size spreadsheet that you have successfully used on your iPad? I am working towards developing educational software for the iPad and have a spreadsheet that is currently 1682KB - 5775 rows and 123 colu

  • Organizing photos in a "shuffle" mode

    In iPhoto I can organize photos in folders by "all, date, keyword or rating." However I wish to create DVDs of family photos via iMovie so as to use the advantages of iMovie, as themes, transitions and music. The final program is more pleasing if the

  • Portal Role to Access SAP ERP

    Hi I have created my own portal iviews and pages by using Visual composer. It creates a sales order in SAP ERP system. When I execute it in the portal with Super Admin rights everything works fine. Perfect. But when I assign to a user that does not h

  • Sacades lecture fichier wave si action sur la fenêtre

    Bonjour, J'ai comparé deux exemples de lecture de fichiers waves 1) Sound player 2) Sound File to sound output Dans le 1er , on fait appel à une DLL et aucun soucis de fonctionnement Dans le 2eme qui me semble plus intéressant pour diverses raisons,

  • Runtime error xcelsius 2008

    I get the following error when trying to run xcelsius 2008 for the first time. Runtime erorr Program: c:\Program Files\Business Objects\Xcelsius\Xcelsius.exe This application has requested the Runtime to terminate it in an unusual way. I have just up