Bar widths in a graph

In a bar graph, is there a way in can specify the "bar" width to be (for example) 28 pts without ungrouping and using transform tool? In can get pretty close, but the German in me wishes an exact, controllable width for the bar.
cheers,
erich

Hi,
Let's do the following
No of transactions
30.
10.
201301 201302 201303........ 201312 month
The month and the number of transactions comes from a transaction table.
if i only have 201301 the bar is quite width, if I have all months filled the bars are smaller. Can it always the same size?
thanks a lot

Similar Messages

  • Obiee 11g graph how to increase bar width

    Hello,
    obiee 11g: -> bar graph: how to increase bar width ?
    Thank you,
    Ark

    Hi ,
    Create your own bar code type rather than using system Bar Codes , if the length of your code doesn't fit with the standards available under  SE73 . There you can define your own sizes as per your requirement , If you have a stands logic ,for example production order type Z001 should be in 15 lengthy code , then put a condition in the smart form to facilitate it , like wise you could use different lengthy bar codes in single form .
    I hope this is what you meant by your treat.
    Good Luck .
    Cheers ,
    Dilum

  • How to Change the Width of a Graph Created in 9iReports

    Report Version 9.2.0.1.0
    In the following listing, the plot area is wider than the width of the enclosing graph area and the information is being truncated. How do I make the graph wide enough to support the plot area?
    <p><rw:graph width="70000" id="graph" src="G_LAST_NAME" groups="LAST_NAME" dataValues="SALARY">
    <!--
    <?xml version="1.0" ?>
    <Graph version="2.5.0.5" depthRadius="15">
    <DataviewFootnote foreground="#0" background="#ffffff"/>
    <DataviewSubtitle foreground="#0" background="#ffffff"/>
    <DataviewTitle foreground="#0" background="#ffffff"/>
    <O1Axis lineWidth="1"/>
    <O1MajorTick lineWidth="1"/>
    <O1Title text="Employee" visible="true" textRotation="TR_HORIZ_ROTATE_90"/>
    <PieFrame fillColor="#996600" fillTransparent="false"/>
    <PlotArea fillColor="#996600">
    <Rect width="30000"/>
    </PlotArea>
    <SeriesItems>
    <Series id="0" color="#ffff66"/>
    <Series id="1" color="#99cc00"/>
    <Series id="2" color="#cc9933"/>
    </SeriesItems>
    <Title text="Employee Salaries" visible="true"/>
    <X1Axis lineWidth="1"/>
    <Y1Axis lineWidth="1"/>
    <Y1MajorTick lineWidth="1"/>
    <Y1Title text="Salary" visible="true"/>
    <Y2Axis lineWidth="1"/>
    <Y2MajorTick lineWidth="1"/>
    </Graph>
    -->
    </rw:graph></p>

    Kirk,
    In the <rw:graph> tag, just add the standard HTML properties of width="xxx" and height="xxx" to control the width and height of the image. BTW, the graph tag is in the on-line help, although not in the index. You can find it by doing a search for "rw:graph".
    regards,
    Stewart

  • Bar/Line Chart in IR 9.3.1 how do i change bar widths

    I have a chart with 3 bar and a single line. The problem I am having is that the bar exceed the interval space. The intervals are based on month and the bar overlap into the next internal. How can I reduce the bar width so it fits within the single interval?

    The easiest way is to use the Status-4-Evar add-on. With it you can choose to not display any of the status messages or url hover previews, or display them in the add-ons bar or location bar instead.
    https://addons.mozilla.org/firefox/addon/status-4-evar

  • Change edit wysiwyg tool bar width?

    Anyone know Exactly how to change the tool bar width on the edit pages for the wiki and blogs.
    I noticed the comment in /usr/share/collaboration/css/required/toolbar.css
    .edit_toolbar{
    width:700px; /* width is actually set in wiki.js as mFinalWidth. also modify in theme.plist. */
    that said to change it in the wiki.js, but changing/editing the mFinalWidth in the /usr/share/collaboration/javascript/wiki.js doesn't change it. Also noted that you make a change/modification to the theme.plist, but what changes would you make to that file?
    Any ideas?
    -Silas
    International Affairs
    University of Oregon
    Message was edited by: IA IT, added path and details.

    If your custom theme sets a toolbar width that is too small for the contents of the toolbar, you'd also need to override the inner div. Its default is set to 824px to keep the toolbar buttons from wrapping oddly as the toolbar opens.
    /* minimum width clipping container... */
    .contentstoolbar{
    width:824px; /* might need to account for parent border/padding */
    Overriding the previous value would probably be a better option than realigning the action buttons, but if you wanted to do that, you could override the float property for the following:
    .tbactions a:link, .tbactions a:visited
    Customizing the editing interface on your theme is completely unsupported, of course, but you can rewrite the styles however you want. If you know CSS well, it's fairly easy to change the toolbar width or replace the toolbar icons, but you could even restyle the drop-down menus, reorder the buttons, etc. The CSS is pretty flexible.
    In order to dissect the page and figure out what to change and where to change it, I'd suggest using a developer tool like the WebKit Inspector or the Firebug plugin for Firefox. We used both extensively while building the app. Good luck.
    Message was edited by: James Craig changed "changing the previous value" to "overriding the previous value"

  • Changing colors of individual bars in a XY Graph

    I am using an XY Graph (bar style) to display 50 voltages. I have limit settings (low alarm,low warning, high warning, high alarm)that I would like to impose on each of the 50 bars in the XY graph. My problem is that any way I try it the limits are only imposed on the first bar on the graph and all the following bars change colors along with the first bar no matter what value they have. Is it possible to control the properties of individual bars inside an XY Graph ??

    > I am using an XY Graph (bar style) to display 50 voltages. I have
    > limit settings (low alarm,low warning, high warning, high alarm)that I
    > would like to impose on each of the 50 bars in the XY graph. My
    > problem is that any way I try it the limits are only imposed on the
    > first bar on the graph and all the following bars change colors along
    > with the first bar no matter what value they have. Is it possible to
    > control the properties of individual bars inside an XY Graph ??
    >
    The short answer is no. All of the elements in a plot use the same
    colors to draw. To get the display you want, you need four plots.
    Write a subVI that takes in your array and returns the four that you
    need. It will index the elements and generates a value in four othe
    r
    arrays such that three of them are NaN and the fourth contains your
    value depending on the alarm status keeping the same X value with all
    four plots. As an example, if the value is lower than the low alarm
    limit, the value will be placed in the low array and NaNs in the other
    three arrays.
    Now wire the four arrays to the graph as a multiplot, you will either
    use a build array or a Build Clustered array depending on the XY type.
    The plots will overlay, with only one point being non-NaN for each X
    location. It will use the color for plot 0, 1, 2, or 3 depending on
    which array the value was in.
    Greg McKaskle

  • Bar Chart Bar Width

    I am strugllig hard to have all my bars have a same width. Followig is what the code looks like:
    <?xml version="1.0"?>
    <!-- charts/UsingBarSets.mxml -->
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:s="library://ns.adobe.com/flex/spark"
        >
        <s:layout>
            <s:VerticalLayout/>
        </s:layout>
        <fx:Script><![CDATA[
            import mx.charts.Legend;
            import mx.charts.BarChart;
            import mx.charts.series.BarSet;
            import mx.charts.series.BarSeries;
            import mx.collections.ArrayCollection;
            [Bindable]
            private var yearlyData:ArrayCollection = new ArrayCollection([
                {month:"January", label:"January", planned:5000, funded:5000,
                    spent:4000},
                {month:"February", label:"February", planned:7000, funded:6000,
                    spent:7000},
                {month:"March", label:"March", planned:8000, funded:7000,
                    spent:6000},
                {month:"April", label:"April",planned:10000, funded:1000,
                    spent:12000}
            [Bindable]
            private var yearlyData1:ArrayCollection = new ArrayCollection([
                {month:"January", revenue:120, costs:45,
                    overhead:102, oneTime:23},
                {month:"February", revenue:108, costs:42,
                    overhead:87, oneTime:47},
                {month:"March", revenue:150, costs:82,
                    overhead:32, oneTime:21},
                {month:"April", revenue:170, costs:44,
                    overhead:68},
                {month:"May", revenue:250, costs:57,
                    overhead:77, oneTime:17},
                {month:"June", revenue:200, costs:33,
                    overhead:51, oneTime:30},
                {month:"July", revenue:145, costs:80,
                    overhead:62, oneTime:18},
                {month:"August", revenue:166, costs:87,
                    overhead:48},
                {month:"September", revenue:103, costs:56,
                    overhead:42},
                {month:"October", revenue:140, costs:91,
                    overhead:45, oneTime:60},
                {month:"November", revenue:100, costs:42,
                    overhead:33, oneTime:67},
                {month:"December", revenue:182, costs:56,
                    overhead:25, oneTime:48},
                {month:"May", revenue:120, costs:57,
                    overhead:30}
        ]]></fx:Script>
            <mx:BarChart id="myChart"
                         dataProvider="{yearlyData}" showDataTips="true"  width="100%" height="100%" >
                <mx:verticalAxis>
                    <mx:CategoryAxis categoryField="month"/>
                </mx:verticalAxis>
                <mx:series>
                    <mx:BarSet type="clustered" >
                        <mx:BarSeries xField="planned"
                                      displayName="Planned" />
                        <mx:BarSet type="overlaid">
                            <mx:BarSeries
                                xField="funded"
                                   displayName="Funded"/>
                            <mx:BarSeries
                                xField="spent"
                                displayName="Spent"/>
                        </mx:BarSet>
                    </mx:BarSet>
                </mx:series>
            </mx:BarChart>
    </s:Application>

    Take a look at the Bar Chart's barWidthRatio and maxBarWidth styles. They interact with one another,so are a little unpredictable.
    One tactic I use in the case where the bar widths are critical to the design is to set up two horizontal slider and bind the barWidthRatio and maxBarWidth properties to them. Now you can adjust them at run time and watch how they interact, and pick up the most appropriate values to use. Makes it much easier.

  • Flash Chart Bar Width

    Is there a way to limit the width of the bars on a flash bar chart?
    I've found that if I have but one bar on the chart it fills the entire chart area.
    Doesn't look so good.
    Bob

    Hello,
    I did a blog post about that: http://dgielis.blogspot.com/2008/06/specify-same-width-of-column-chart-in.html
    The only way I can think of doing it, is to calculate the number of bars and adjust some parameters depending that. You do that by using Custom XML. I already tried it to get dynamic scaling and that worked. But I didn't have the time yet to do the bar width example, but the principle should be the same.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Error Bars are essential on Graphs -- how do we make them animate?

    I give a lot of talks with data, and have to have error bars. Is there anyway to animate data and show error bars? The animated graphs are very sexy but without error bars i can't use them ;(

    I wouldn't count on anyone official at Apple reading the forums -- if you want to request a feature I'd do it at the Keynote feedback page.

  • How to Set Anychart Bar Width?

    I have searched for this, perhaps I am missing something obvious ...
    How do I set the Anychart bar chart width?
    When a chart has only a few values, the bars are too wide.
    Client want standard (narrower) bar widths in these cases, not one or two wide bars.
    Have searched the XML settings, have not found it yet.
    Anyone?
    Thank you - Karen

    Hi Karen,
    With AnyChart, the bar width is something that is calculated automatically.  You'll see this mentioned in the AnyChart online documentation on Bar Charts.  You could try playing around with the padding options, to see if such settings help.
    Regards,
    Hilary

  • 10.0.7 Information Bar Width

    Hi folks.
    The new Information Bar width (Titles/Lower Thirds/Information Bar) is shorter than I like it to be.  But I can't find the previous setting of width.  Am I missing something? 
    Any help appreciated.
    Cheers

    Yes. (Unless I'm misunderstanding your issue.)  If you go into the inspector, under the "Title" tab, you should be able to manipulate both the "bar length" and the "bar height." (Open the inspector by pressing the blue button which looks like sideways audio fader bars or "guitar frets.")

  • How can I widen the vertical scroll bar width in Firefox and Thunderbird?

    How can I widen the vertical scroll bar width in Firefox and Thunderbird?

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Horizontal Menu Bar Width Issues

    Hey all,
    I'm having some problems getting my menu bar to stretch all the way across the 1000px container it's in.  Is there a way to alter the width of individual tabs?  It is set to float left, and the width is currently set at auto under ul.MenuBarHorizontal li.  I've put a screen shot in for reference.  Thanks for any help in advance.
    As you can see below, the last tab (gifts) is not quite reaching the edge of the container. 

    You can change the padding in the following
    ul.MenuBarHorizontal a {
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
    Gramps

  • Spry Horizontal Menu Bar width problem in IE and Safari

    Hi Everyone,
    I am working on a template and have used Spry Horizontal Menu for quite a few sites now. This one is giving me problems though on the width of the navigation bar.  It moves the last right menu item to the next row on the left in Safari and IE and Chrome, but looks perfect in Firefox.  I'm using a googlefont for the text. As I have quite a few menu items I have them set to 'auto' width.  Is there a fix to make all the others look like it does in Firefox or do I need to shorten my menu items by changing titles/reducing padding, etc.?
    Working page can be viewed at www.ikanizi.com/index2.html
    Many thanks. 

    Anyone who increases their browser's text size will see the same thing.  For wiggle room, reduce top-level links from 11 to no more than 7.
    Nancy O.

  • WebView  scroll-bar width  – touch screen friendly

    How can I change the width of a WebView’s scroll-bar?
    I tried to change the padding and font size as suggested at
    [ https://forums.oracle.com/forums/thread.jspa?messageID=10409262 ]
    Although it works fine with TableView, it does not work for the WebView.
    Adjusting padding and font size only increases the height of scroll-bars increment/decrement buttons but the width remains default.
    The core problem is that I have a touch-screen driver with insufficient support for JavaFX TouchEvents (no SWIPE, SCROLL etc). It means that I received only mouse pressed/released and mouse move events. For that reason, I need to make my GUI (WebView, TableView,..) more user friendly.

    Where is there a scrollbar that's related to a menu ring? I can't find it.
    One way to get a larger scrollbar:
      place a horizontal progress bar:
      change to control
      change to "no fill"
      edit it (STD if you want slider width changes to stick, TD if you're ok with copy/paste)
      show parts window
      select "Slider, Needle or Thumb"
      Make it as wide as you like
      Color it
    Oh, cool! If you find a nice picture the size you want, make the Slider that size then right click it and "import picture from clipboard".
    Are you talking about the scrollbars for the whole window?

Maybe you are looking for

  • How do I transfer itms from one iPad to another

    HHow do I transfer items from one iPad to another ipad

  • Error when create a Payment Batch

    When I create a payment batch, I fill batch name as LIPPO_X123. then I entry bank account name "LIPPO Branch JKT1". But when I want to choose "Document" by clicking the list combo appear message "FRM40502:Oracle error : unable to read list of value"

  • Mail 1.3.11 & Colour Management

    Since changing to a LCD monitor, photos sent with e-mails are not accurately displayed. My Monitor is accurately calibrated. Can someone shed some light ? Thanks

  • Load balancing of Access Manager

    Hi, I 'm using 2005Q1 Messaging , Access Manager and Delagted Admin. Every thing is working fine. Now I need to add another Access Manager on a separate machine for load balancing. Plz let me know : - How can I add new Access Manager which will use s

  • Username is case sensitive in BPM Worklist

    HI I have BPEL process with human task, that assigned to jcooper. When i login as jcooper i see this task. But if i login as JCOOPER i don't see task. Why i have 2 users with same usernames. How it fix. Thanks.