Axis chart in a vertical position

Hi
I have a chart in my VC iview that I would like to display the Axis in a diferent position not horizontal, but in the vertical/diagonal position.
How do I do this?

Hi Mario
I think I didn't provide the right information about my question, I need to change the alignment of the x-x, let's say I have a chart, it's a column chart, and I'm displaying my Y and X axis, I need to change the alignment of the category X. Below the X I have a list of cost centers and I need to display my cost centers numbers vertically along the X axis.
It's very easy to change this property in Excel-BEX
Any suggestions?

Similar Messages

  • 2 Vertical Axis Chart & State Change Bug - Clarified

    When a column or line chart has 2 vertical axis (one on the left and one on the right), the additional vertical axis must be defined at the series level as the definition at the chart level only allows for one vertical axis.
    When you define the additional vertical axis at the series level, it will populate on the chart when the chart is first rendered.  But, it fails to populate after a state change.   This is apparently due to the fact that the “maximum” property on the additional vertical axis defined at the series level changes to 100 causing the line not to render as the data values are greater than 100.
    This is a Flex 4 problem.  Flex 3 does not have this problem.
    Below is an example application that demonstrates the problem.
    The example first presents a chart with Gross Sales plotted as columns using the left axis and Net Sales plotted as a line using the right axis.  Note, the vertical axis for Net Sales is defined at the series level.
    When you click the “Data” button a state change occurs and a data grid is presented showing Gross Sales and Net Sales.  When you click the “Chart” button another state change occurs and the chart is presented again.  Gross Sales will still populate, but Net Sales fails to populate.  This is the problem.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                          xmlns:s="library://ns.adobe.com/flex/spark"
                          xmlns:mx="library://ns.adobe.com/flex/mx">
      <fx:Script>
        <![CDATA[
          import mx.collections.ArrayCollection;
          [Bindable]
          public var dp:ArrayCollection = new ArrayCollection([
            {DTSALE:"11-Nov-07", NET:141.87, GROSS:63.34},
            {DTSALE:"12-Nov-07", NET:145.74, GROSS:58.56},
            {DTSALE:"13-Nov-07", NET:142.77, GROSS:62.34},
            {DTSALE:"14-Nov-07", NET:148.06, GROSS:75.65},
        ]]>
      </fx:Script>
      <s:states>
        <s:State name="chart"/>
        <s:State name="data"/>
      </s:states>
      <s:controlBarContent>
        <s:Button label="Chart" click="this.currentState='chart'"/>
        <s:Button label="Data" click="this.currentState='data'"/>
      </s:controlBarContent>
      <s:Group width="100%" height="100%">
        <mx:ColumnChart includeIn="chart"
          width="100%" height="100%" dataProvider="{dp}">
          <mx:horizontalAxis>
            <mx:CategoryAxis categoryField="DTSALE"/>
          </mx:horizontalAxis>
          <mx:verticalAxis>
            <mx:LinearAxis id="vLeft" title="Gross Sales Columns"/>
          </mx:verticalAxis>
          <mx:series>
            <mx:ColumnSeries yField="GROSS" verticalAxis="{vLeft}"/>
            <mx:LineSeries yField="NET">
              <mx:verticalAxis>
                <!-- Workaround: add maximum="200" to line below -->
                <mx:LinearAxis id="vRight" title="Net Sales Line"/>
              </mx:verticalAxis>
            </mx:LineSeries>
          </mx:series>
          <mx:verticalAxisRenderers>
            <mx:AxisRenderer axis="{vLeft}" placement="left"/>
            <mx:AxisRenderer axis="{vRight}" placement="right"/>
          </mx:verticalAxisRenderers>
        </mx:ColumnChart>
        <mx:DataGrid dataProvider="{dp}" width="100%" height="100%" includeIn="data">
          <mx:columns>
            <mx:DataGridColumn dataField="DTSALE"/>
            <mx:DataGridColumn dataField="NET"/>
            <mx:DataGridColumn dataField="GROSS"/>       
          </mx:columns>
        </mx:DataGrid>
      </s:Group>
    </s:Application>

    I found a workaround.
    When the chart goes through a state change, the “maximum” property on the additional vertical axis defined at the series level defaults to 100 causing the line not to render as the data values are greater than 100.  Setting this to a higher value (maximum="10000" ) forces the line to appear consistently after a state change.
    I still believe this is a bug.
    The downside is that I will have to dynamically determine the maximum value to use at runtime, but at least I can still use state changes on two vertical axis charts.

  • 2 Vertical Axis Chart & State Change Bug

    When a column or line chart has 2 vertical axis (one on the left and one  on the right), the additional vertical axis must be defined at the series level  as the definition at the chart level only allows for one vertical axis.
    When you define the additional vertical axis at the series level, it will populate on the chart when the chart is first rendered.  But, it fails to populate after a state change.
    This problem does not occur if the data provider uses static data defined in Action Script as an array collection.  But, the problem always occurs if the data provider uses a web service.
    This is a Flex 4 problem.  Flex 3 does not have this problem.
    Below is an example that will demonstrate the problem.  It uses the Flex Grocer web service that comes on the CD with Jeff Tapper’s book “Adobe FLEX 3 Training from the Source” (an Adobe Press book).  However, this example can be easily modified to use any web service.
    The example is currently pointing to static data defined in Action Script.
    You can switch from static data to web service data by commenting the instruction on line 32 ( dp = dpStatic; ) and un-commenting the instruction on line 33 ( dp = (event.result as ArrayCollection); ).
    The example first presents a chart with Gross Sales plotted as columns using the left axis and Net Sales plotted as a line using the right axis.  Note, the vertical axis for Net Sales is defined at the series level.
    When you click the “Data” button a state change occurs and a data grid is presented showing Gross Sales and Net Sales.  When you click the “Chart” button another state change occurs and the chart is presented again.  If you are pointing to static data, both Gross Sales and Net Sales will populate on the chart.  If you are pointing to web service data, Gross Sales will still populate, but Net Sales fails to populate.  This is the problem.
    Does anyone have a solution or work around for this problem?
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   creationComplete="init()">
      <fx:Script>
        <![CDATA[
          import mx.rpc.events.ResultEvent;
          import mx.rpc.events.FaultEvent;
          import mx.collections.ArrayCollection;
          [Bindable]
          public var selectedType:String = "All";
          [Bindable]
          public var startDate:Date = new Date(2006, 4, 1);
          [Bindable]
          public var endDate:Date = new Date(2006, 4, 5);
          [Bindable]
          public var dp:ArrayCollection;
          public var dpStatic:ArrayCollection = new ArrayCollection([
            {DTSALE:"11-Nov-07", NET:41.87, GROSS:63.34},
            {DTSALE:"12-Nov-07", NET:45.74, GROSS:58.56},
            {DTSALE:"13-Nov-07", NET:42.77, GROSS:62.34},
            {DTSALE:"14-Nov-07", NET:48.06, GROSS:75.65},
          private function init():void {
            getData();
          private function getData():void {
            dashboardWS.getSalesData.send();
          private function salesRPCResult(event:ResultEvent):void {
            dp = dpStatic;                                        // Line on chart always populates with static data
            // dp = (event.result as ArrayCollection);   // Line on chart does not populate with WebService data after state change
          private function showFault(event:FaultEvent):void {
            trace(event.fault.faultCode + ":" + event.fault.faultString);
        ]]>
      </fx:Script>
      <fx:Declarations>
        <mx:WebService id="dashboardWS" fault="showFault(event)"
                       wsdl="http://localhost:8300/flexGrocer/cfcs/aggregate.cfc?wsdl">
          <mx:operation name="getSalesData" result="salesRPCResult(event)">
            <mx:request>
              <startDate>{startDate}</startDate>
              <endDate>{endDate}</endDate>
              <category>{selectedType}</category>
            </mx:request>
          </mx:operation>
        </mx:WebService>
      </fx:Declarations>
      <s:states>
        <s:State name="chart"/>
        <s:State name="data"/>
      </s:states>
      <s:controlBarContent>
        <s:Button label="Chart" click="this.currentState='chart'"/>
        <s:Button label="Data" click="this.currentState='data'"/>
      </s:controlBarContent>
      <s:HGroup width="100%" height="100%">
        <mx:ColumnChart includeIn="chart"
                        width="100%" height="100%" dataProvider="{dp}">
          <mx:horizontalAxis>
            <mx:CategoryAxis categoryField="DTSALE"/>
          </mx:horizontalAxis>
          <mx:verticalAxis>
            <mx:LinearAxis id="vLeft" title="Gross Sales Columns"/>
          </mx:verticalAxis>
          <mx:series>
            <mx:ColumnSeries yField="GROSS" verticalAxis="{vLeft}"/>
            <mx:LineSeries yField="NET">
              <mx:verticalAxis>
                <mx:LinearAxis id="vRight" title="Net Sales Line"/>
              </mx:verticalAxis>
            </mx:LineSeries>
          </mx:series>
          <mx:verticalAxisRenderers>
            <mx:AxisRenderer axis="{vLeft}" placement="left"/>
            <mx:AxisRenderer axis="{vRight}" placement="right"/>
          </mx:verticalAxisRenderers>
        </mx:ColumnChart>
        <mx:DataGrid dataProvider="{dp}" width="100%" height="100%" includeIn="data">
          <mx:columns>
            <mx:DataGridColumn dataField="DTSALE"/>
            <mx:DataGridColumn dataField="NET"/>
            <mx:DataGridColumn dataField="GROSS"/>       
          </mx:columns>
        </mx:DataGrid>
      </s:HGroup>
    </s:Application>

    I found a workaround.
    When the chart goes through a state change, the “maximum” property on the additional vertical axis defined at the series level defaults to 100 causing the line not to render as the data values are greater than 100.  Setting this to a higher value (maximum="10000" ) forces the line to appear consistently after a state change.
    I still believe this is a bug.
    The downside is that I will have to dynamically determine the maximum vale to use at runtime, but at least I can still use state changes on two vertical axis charts.

  • Is it possible to create a dual y-axis chart in Xcelsius?

    Is it possible to create a dual axis type chart, mixed bar and line?

    Xcelsius does not currently have the ability to create a dual axis chart. However, other users have been able to create a workaround by layering two charts on top of each other and hiding the undesired elements of the second chart. A third chart can be added in much the same way to display the second axis' label(s). Searching the internet for articles from users should locate step by step instructions.

  • I created a PDF of my book in Preview and encrypted it. When opened in Adobe Reader, it is rotated to the vertical position rather than the original landscape position. How do I fix this in Preview? I don't want my buyers to have to hassle with rotating.

    I created a PDF of my book in Preview and encrypted it. When opened in Adobe Reader, it is rotated to the vertical position rather than the original landscape position. How do I fix this in Preview? I don’t want to hassle my buyers with rotating. There was no option in Preview to account for this automatic and unwanted rotation.

    Then you rotate it and SAVE or SAVE AS and it will remain that way.

  • HT204158 Can the Smart Cover be used to support the ipad in the vertical position?

    Can the Smart Cover be used to support the ipad in the upright vertical position?

    It can, but its not very secure, and only in a completely vertical position i.e 90 degrees.

  • Make positive vertical position change = UP when moving object? CS6

    When moving an object, entering a positive value for vertical position sends objects DOWN. How do I reverse this such that entering a positive value will move objects UP?Thanks.

    What about the suggestion in the first post in this thread, Reasoner?
    http://forums.adobe.com/message/3859580#3859580?tstart=30#3859580
    It is more work than using a script (was linked to in post #4 in the other thread).
    We may have to ask Carlos to make a new script that works in CS6 (and in CS7 and CS8 and so on).
    Carlos, what say you?

  • How to create 2-Axis chart all sharing x values?

    Hello,
    I'm trying to create a 2-Axis chart while preserving x-value sharing, i.e. my four paired data sets should be plotted in Scatter mode, I think. To be more clear, I wish to "combine these two charts below into one", with the second Y-axis on the right for the second chart (whose numbers are obviously higher):
    When I attempt to create a 2-Axis chart via the Insert menu, it changes the x-axis data (mAs) into its own data set, treating it as if it were a dependent variable:
    mAs is the independent variable, upon which the others depend ... I can't figure out how to get Numbers to realize this. Sorry for my rambling tone -- I think I should call it a night, but I wish to get this done. Is my problem clear? I want to create a 2-Axis chart, effectively "combining" those first two scatter charts into one 2-Axis scatter chart. Please help!
    Thank you for your time and assistance.

    ER,
    There is no option for a two-axis Scatter Chart. You can simulate it by scaling your data in such a way that it fits the chart and aligns with a second axis that you manually paste into the Sheet and combine with the chart so that it appears to belong there.
    Only the Scatter Chart plots values vs. values. All the other charts plot values against category names (text).
    Regards,
    Jerry

  • Moving a chart into an exact position

    Hello,
    I am working on acrobat and I want to place a chart into an exact position in the document, but when I grab the chart it is placed either too high or too low from the place I want to put it.... how can I fix that? how can I place the picture/chart in the place I want it without going to high are too low in the document??

    First of all, Acrobat is not a layout application and using it for that
    purpose is both tricky and dangerous, as it can totally screw up your
    document. If possible, stick to an application that more suited for this
    task, like InDesign.
    To answer your question: Make sure that the following option is NOT
    selected: View - Show/Hide - Rulers & Grids - Snap to Grid.

  • Trendline Problems with Numeric Axis Charts

    I am attempting to create a chart in Crystal Report XI that lists the time period (months) on the x-axis and the number of units sold on the y-axis. I have created the chart as a numeric axis bar chart because there are some months that do not have any units sold and converted the dates through a formula to periods where the first month requested equals 0 and each of the following months is incremented by 1.  The problem I am having is that the data is displayed correctly but when I request a trendline be displayed, I am getting a trendline that does not correspond with the data. For example I have a 60 month time period where half the months are zero and the maximum number of units sold is 8 and the trend line runs from 30 at period 0 and 24 at period 60. The equation is displayed as y=-1.1x29.9 and the actual trendline should be y=0.0078x0.5802. The trendline in a side by side bar chart is closer but is skewed by the fact that periods with no units sold is not displayed but is closer than what I am getting with the numeric axis bar chart. I have also noted that if I change the scale of the x-axis from automatic or change the gap width, I get wildly different trendlines for each change that still does not match the data. I have also tried to use the date axis bar chart but again the data is presented correctly but the trendline is not correct. So my question is: Can I use a side by side bar chart, in which the trendline seems more accurate, that can account for months with no data and/or is there something that I am missing on setting up a trendline for a numeric axis chart?

    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

  • I can't find anything about how to properly manage the tablet's layout in horizontal or in vertical position.

    I can't find anything about how to properly manage the tablet's layout in horizontal or in vertical position.
    If I consult my website in vertical position, it's ok but, If I turn my tablet, all the hyperlinks and all general visualization are wrong.
    How I can properly handle both views?
    PS: I'm sorry for my bad english

    Could you share the site URL so we may check at our end? Also could you share some screenshots explaining the 'wrong hyperlinks and visualization'.
    Thanks,
    Vikas

  • My MacBook Pro top cover flips open partially when kept in a vertical position.

    The top cover of my MBP; brought in Sept 2012, flips open when kept in a verticla position. Like when you place it in a laptop bag. The local  Apple service center was not of much help. Have attached a snap of the MBP in the vertical position showing the top cover flip open. Can someone be of some help

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • Why does my iPad 1 not let me use the touch screen capabilities when it is in horizontal position, all is fine in vertical position

    my ipad os 5.1.1  first ipad ever 64 gb will not let me use any function when turned horizontally  it works fine when in vertical position  any suggestions?

    These are the instructions for that specific code.
    Error 40265xxxx: Errors of the 40265xxxx range generally occur during the restore-from-a-backup  phase, after  iOS has been installed on the device. Restoring the  device and setting up as new can resolve the issue. Before restoring as  new, take steps to preserve the previous backups created by iTunes, such  as copying the contents of the Backup directory onto the desktop. See iPhone and iPod touch:  About backups to learn where backups are stored for your  computer's operating system and additional precautionary notes regarding setting up as new. The  backups created by iTunes store data such as your SMS, Favorites,  Bookmarks, and other app data.
    Taken from this support site.
    http://support.apple.com/kb/TS3694#error40265
    I think you are going to have to restore as new. Deleting that MobileSync backup folder may have caused the problem. When you delete the backup from iTunes like I was asking about, you are only deleting one particular backup. If you have multiple iDevices - all of the backups would be in that one folder - I think that's how it works.
    Read the article - even though the heart and soul of it has been pasted into this link already.

  • Vertical Position of Bullets

    Hi --
    Is there anyway to control the vertical positioning of bullet
    images in a
    <ul>? The reason I ask is that on this page:
    http://www.alterra-group.com/alterra_group_services.htm
    the bullet image
    displays next to the first line of text in each <li> in
    FF but in the middle
    of the overall <li> in IE. My CSS for this was reused
    pretty much vertatim
    from this page (
    http://www.bloomgroup.com/insights.htm)
    which doesn't have
    the problem.
    Does anyone know how I can get the bullet images to display
    next to the
    first line of each <li>?
    Thanks,
    John

    .oO(Tarvardian)
    >Is there anyway to control the vertical positioning of
    bullet images in a
    ><ul>? The reason I ask is that on this page:
    >
    http://www.alterra-group.com/alterra_group_services.htm
    the bullet image
    >displays next to the first line of text in each
    <li> in FF but in the middle
    >of the overall <li> in IE. My CSS for this was
    reused pretty much vertatim
    >from this page (
    http://www.bloomgroup.com/insights.htm)
    which doesn't have
    >the problem.
    >
    >Does anyone know how I can get the bullet images to
    display next to the
    >first line of each <li>?
    You could try it with a background image instead of
    'list-style-image'.
    Then you can place it somewhere near the left top corner of
    the list
    item.
    Micha

  • Can pivot capable monitors be used in vertical position with Tiger OS?

    I'm a writer and want to purchase an LCD monitor with pivot cabability, so I can use it in the vertical position to see an entire page. I know that pivot monitors come with software to enable viewing in the vertical position for Windows PC's, but is this posible for a Mac running Tiger OS?
    12 inch PowerBook   Mac OS X (10.4.8)   1.5 GHz, 768 RAM

    It depends on the graphics in your Mac. See:
    <http://docs.info.apple.com/article.html?artnum=302291>
    If Rotate is not in "Displays" System Preference, and your Mac uses the ATI graphics chip, you can try downloading ATI Displays from
    <http://www.ati.com>
    Some displays do rotation entirely within the display. For example a display would tell the computer it's 1600 x 1024 when horizontal, but would say it's 1024 x 1600 when vertical. You may have to use the "Detect Displays" button for the computer to see the change.

Maybe you are looking for

  • Suggestions Pls | Web Service Requirement

    Hi, We have a requirement that C4C Standard BO - Standard Inbound Web Service to be called from External Non SAP System say X. Now before the Web Service post anything to Cloud directly, we want to involve Custom logic/code to determine certain infor

  • Please reply ASAP-Discoverer and BI Publisher

    Hi, Could some one please list the pros and cons from switching from Discoverer to BI Publisher? I know it seems kinda vague but anything you have experienced would be helpful. New to both tools at this moment. Thanks so much!

  • Multiple Crystal Reports in a C# Windows Application

    Here is my conundrum. I am writing a program that uses checkboxes as controls for what happens next. If you check one box, one type of query occurs. If you check the other, another TOTALLY different query is used. Since the data is so dramatically di

  • Applescript batch convert DOC to TXT with line breaks

    Hey guys, I recently got stuck at work having to convert over 1,000 DOC files to TXT files with line breaks. I've found online several different Applescripts that work great at converting DOC files to TXT files but I can't find one that will do the T

  • Use FI Posting date as a filter value, can I get YTD for current year?

    Dear Expert, I work on a BI report which calculate the YTD key figure (restricted by 0CYEAR and =< 0CMONTH). One of the requirement for the report is to allow user to enter a value for a date using FI Posting date (although this is optional). Without