Extra Y Axis

Greetings,
We are using Apex 3.1 integrated with Anycharts 5. We have developed a combination chart of line and stacked bar also added an extra Y axis to get the line to work with the combination. The problem we are facing is, the primary and secondary Y axes are getting different ranges and intervals.. we can set the intervals and ranges using the settings in XML, but we do not want to set a maximum.
Is there a way to tell the secondary Y axis to take the range from the primary Y axis so that both the stacked bar and lines get the same ranges.
-Vatsa

Dimitri,
The chart was working fine with the bars and just one line. Now that I have added two more lines, one of them is displaying stacked values instead of its own values. This is the sql:
SELECT NULL LINK,
END_DATE,
TOTAL_TC_PLANNED as "{name:Total_TC;type:Line}",
Planned_Execute as "{name:Planned;type:Line}"
FROM mx_psr_plan
WHERE PRODUCTID = '32406.42282.17227.34063'
AND TEST_PHASE = 'SVT'
AND TEST_PASS = '1'
AND ITERATION = '1'
AND LOCATION = 'PR'
order by end_date
where TOTAL_TC_PLANNED shows the correct values and then Planned_Execute shows on top of the values of Total_TC_Planned. Any ideas?

Similar Messages

  • Incorporation of extra vertical axis in same BAM report

    Is it possible to incorporate another vertical axis keeping horizontal axis intact within the same report?If possible please provide me solution on that.

    Hi
    You could look into the ADF views . In 11.1.1.2.0, we support BAM Data control which allows ADF views to be leveraging BAM's real time update feature.
    There is a tutorial for the same on BAM OTN
    http://www.oracle.com/technology/products/integration/bam/collateral/Samples11g.html - BAM -ADF data control sample
    Payal

  • Apex 4.0 multiple y axises - how to bind series to extra y axises

    Hi
    It seems that a query series can be connected to an extra y axis in the new fabolous anychart version.
    It seems that the syntax in the data section should beis
    <series name="Series 2" y_axis="extra_y_axis_1">
    when you look at the anychart chart examlpes.
    How do I specify this connection between series query and the extra y - axis in Apex.
    I have the extra y axis in place in the chart, but how can it be link with the series query?
    Best regards,
    Jesper

    Bump, anyone know the answer?  Hillary?
    I have a line chart with 3 series/3 y-axis, where the first two series are mapping to the correct y-axis, but the third series seems to be mapping back to the first y-axis.

  • Flash chart and multiple Y-Axis

    Hi,
    I have to create a flash chart with a bar and a line graphic in 1 graphic output
    The left Y-axis should show the values of the bar (i.e. 0 - 20.000) and the right Y-axis should show the percetage value of the line graphic (0 - 100).
    How can I scale the different values and order it th left or right like EXCEL (APEX 4.1)
    Please help me
    Regards,
    Siegwin

    Hi Siegwin,
    thanks for providing access to your workspace. The reason that that second line is not behaving as you expect is because that series of the chart is not associated with the extra Y-Axis. As I mentioned in my previous posting, the extra Y-axis only gets associated with the second series of your chart. In your case, you're actually looking to associate series 2 and 4 with the extra Y-axis. In order to achieve that behaviour you could do one of the following:
    *1*. Hard-code the data in your custom XML region, ensuring you update the XML tags for the 4th series to look as follows:
    <series name="BX old failurre" type="Line" color="0xDBDC25" y_axis="extra_y_axis_1">instead of how it is currently generated for your chart on Page 1:
    <series name="BX old failurre" type="Line" color="0xDBDC25" >
    NOTE: the extra Y-axis will only be associated with the series where the attribute y_axis="extra_y_axis_1" is included.
    This option is not ideal, because you are hard-coding data in the chart, which won't be updated to reflect any changes to the underlying data.
    *2*. Split your chart out in to two separate charts instead of attempting to represent them on one, as done on Page 2 of your application. NOTE: the first chart is using some custom XML to set the maximum value of the extra series to 100.
    *3*. Generate your own <data> tags, to ensure that the extra Y-axis is associated with your selected series. This would require doing something similar to the Thresholds example here: http://apex.oracle.com/pls/apex/f?p=36648:35 - where you are basically overriding the #DATA# substitution string for your chart and replacing it with your own <data> tags.
    In a future release, we'll look at exposing options on the Chart Attributes page to allow for the setting of attributes specifically for the extra Y-Axis, and also allow for the specification of which series the extra Y-axis should be associated with. In the meantime, I think Option 2 above is your easiest option.
    Regards,
    Hilary

  • Y min value not working in horizontal Flash Bar Charts

    Hello All,
    Going crazy trying to work this one out.
    I have a problem with a Flash Chart (APEX version 3.0.1.00.07)
    The data mainly begins at 97 and goes to no more than 100, therefore I want the min to start at 96 so the results don't look to similiar. Why when I imput my minimum value, it does not work for Horizontal Flash charts ?
    It seems to work for stack or vertical charts, can something be done via the "custom XML" ?
    Link below use deatils as follows
    User Name = [email protected]
    Password = helpme
    http://apex.oracle.com/pls/otn/f?p=35407:3:550931101789266:::::
    select option "Same day"

    Hi Deb,
    Both of your queries are using multi-series syntax i.e. returning more than one series of data, therefore your generated chart is actually generating 6 series rather than just the two that you're aiming for. You could try changing your queries to ensure they each generate a single series of information, which would then result in the extra Y-axis being applied to your "Series 2". Here's an example of what I mean:
    Series 1:
    select null link, label, value from (
    select 'test' label, 1 value from dual
    union all
    select 'test2' label, 2 value from dual
    union all
    select 'test3' label, 3 value from dual
    )Series 2:
    select null link, label, value from (
    select 'test' label, 100 value from dual
    union all
    select 'test2' label, 200 value from dual
    union all
    select 'test3' label, 300 value from dual
    )I hope this helps.
    Regards,
    Hilary

  • Bind Variable NOT working in APEX 4.0 within charts SQL

    All,
    I had a chart working fine in 3.2 which had a bind variable like :P11_EMP_NAME, when I created the same chart in 4.0 using the same query it did not work, until I changed the variable to v('P11_EMP_NAME'). Does anyone have experienced the same behaviour?
    Thanks
    Venkat

    Hi Deb,
    Both of your queries are using multi-series syntax i.e. returning more than one series of data, therefore your generated chart is actually generating 6 series rather than just the two that you're aiming for. You could try changing your queries to ensure they each generate a single series of information, which would then result in the extra Y-axis being applied to your "Series 2". Here's an example of what I mean:
    Series 1:
    select null link, label, value from (
    select 'test' label, 1 value from dual
    union all
    select 'test2' label, 2 value from dual
    union all
    select 'test3' label, 3 value from dual
    )Series 2:
    select null link, label, value from (
    select 'test' label, 100 value from dual
    union all
    select 'test2' label, 200 value from dual
    union all
    select 'test3' label, 300 value from dual
    )I hope this helps.
    Regards,
    Hilary

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

  • Gamepad showing extra axis.

    It's a steelseries gamepad, mimics ps2/3 controller. It shows 7 axis. Left stick X/Y, Right Stick X/Y, Dpad X/Y, and a phantom axis that seems to be connected to both LX and RY simultaneously.
    I'm not as much concerned with how it got there if I can just force the driver to ignore it, or if anyone knows of a way to calibrate it (i'm guessing with jscal, or some fancy fingering using the gui calibrator) so that it won't show up. It appears to be pushing a button any time one of those two connected axis register any motion. It's quite annoying to say the least, and makes both of those sticks useless. I've found a few forum posts elsewhere(and i think here iirc) with zero replies, if you don't count the occasional bump.
    Is it just not possible, or is it so simple that A) I don't see it and B) no one is willing to point it out?
    It registers as a:
    [167618.329918] usb 9-1: new low-speed USB device number 11 using ohci_hcd
    [167618.499004] input: DragonRise Inc. Generic USB Joystick as /devices/pci0000:00/0000:00:13.0/usb9/9-1/9-1:1.0/input/input23
    [167618.499319] dragonrise 0003:0079:0006.000A: input,hidraw3: USB HID v1.10 Joystick [DragonRise Inc. Generic USB Joystick ] on usb-0000:00:13.0-1/input0
    [167618.499336] dragonrise 0003:0079:0006.000A: Force Feedback for DragonRise Inc. game controllers by Richard Walmsley <[email protected]>
    If that helps anyone.

    Hello,
    The recent version of the GUI is using new technology which internally
    involves MS Uniscribe. It means the actual preview font is being
    selected automatically by the usage of defined font parameters only as
    a basis. It was done to support cascading device type which in turn let
    us creates the form with any language key and any mixed content
    (for instance form with English key can contains Chinese characters and
    also use default courier font).
    The actual font for previewing is selected in dependence on installed
    fonts (on customer side) and also on registry settings. Usually the issue,
    like described in your message, only have place when text formatting is
    performed by spaces and oriented on some fixed size of the space.
    The PDF previewer has been developed as a solution for these problems.
    Could you please check if the same problem happens on PDF preview?
    Please see the notes below about implmenting the PDF Preview:
    1552498 - PDF Previewer
    1627996 - SAPScript: PDF Previewer as default
    1562096 - Smart Forms PDF Print Preview
    1626370 - Smart Forms: PDF Previewer
    Regards,
    Wen Peng

  • Behaviour of AXIS with Spring and Java, in response to bad webservice call

    This is a stretch, but I wonder if you can help me - I'm new to this, and working in a project that has already been configured to work with Axis.
    We have a Java project built with the Spring framework, in order to provide webservices for access via SOAP. As I understand it (ie not very well!) Axis works to accept these SOAP messages from the client and transform them into calls on our Java methods, and do the reverse with the responses - cool! Which is excellent, and it works well with the config files we have already set up.
    But I have two problems/questions, which may well be related�
    2) In trying to test what exactly happens in which case, I sent some test messages to the service, and found that I could send incorrect parameter names, and sometimes the service still gets called! Axis seems to match the data it recieves to the parameters of the method in some clever way that I don�t understand. Sometimes this works, sometimes it shows a type error. But it seems to depend what parameter I rename as to what exactly happens, so the results are (superficially, at least) unpredictable! I'm sure this behaviour is configurable in some way, but I can't seem to find out how this is done. I'd like to make it so that missing parameters are passed into the method as nulls (as is happening now), but that badly named, duplicated or extraneous parameters are refused, with a specific errormessage stating what the issue is. Similarly, I'd like to reply with an explanatory message if a parameter is passed wth an incorrect type, rather than just a message "org.xml.sax.SAXException: Bad types" that does not detail which parameter is problematic.
    1) The client can receive a "500" response, with an "Internal Server Error" message, although I'm having trouble figuring out exactly when this happens. I'd like to be able to configure what message they receive, in order to give them more information about what they got wrong.
    I just don't know where to start with this - I'm sure there must be ways of configuring all this!
    As much info about an example of what I'm looking at as seems sensible follows. Please forgive me if I've used incorrect terminology somewhere! :)
    Thanks a heap,
    Tracey
    ======================
    So, let's say I have a Java class called DiaryService, with a method called createDiary that takes the appropriate data and returns a confirmation/error message - it starts like this :
        public String createDiary(final String library,
                final BigDecimal companyCode, final Date diaryDate,  final Date actionedDate,
         final String diaryMessage) throws RemoteException And another called GetDiary that returns a Diary as a SOAP bean which looks like this :
        public DiarySoapBean getDiary(final String library,
                final BigDecimal companyCode, final Date diaryDate) throws RemoteExceptionAxis very helpfully lets me access the createDiary and getDiary, by sending XML messages like this example:
    <soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <ns1:createDiary soapenc:root="1" xmlns:ns1="http://localhost:8080/morph_zta/services/DiaryService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <library xsi:type="xsd:string" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">ZRMORPHTA</library>
    <companyCode xsi:type="xsd:Decimal" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">1</companyCode>
    <diaryDate xsi:type="xsd:date" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">2007-01-01Z</diaryDate>
    <actionedDate xsi:type="xsd:date" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">2007-01-01Z</actionedDate>
    <diaryMessage xsi:type="xsd:string" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"/>Blah blah blah</diaryMessage>
    </ns1:createDiary>
    </soapenv:Body>If I rename a parameter, the service may get called, with some other data in that parameter or not, or may not get called at all and the user get a "SAXException: Bad types" error message. I would like it to return a message stating that the parameter is not expected.
    If I duplicate a parameter, the first occurrence appears to be used, and the next ignored. I would like it to return a message saying tnat the extra parameter is not expected.
    If I add gibberish parameters, I get a "No such operation" message. I would like to be able to tell which parameters are incorrect.
    We have entries like this in web.xml:
        <listener>
            <listener-class>
                   org.apache.axis.transport.http.AxisHTTPSessionListener
         </listener-class>
        </listener>
        <servlet>
            <display-name>Apache-Axis Servlet</display-name>
            <servlet-name>axis</servlet-name>
            <servlet-class>
                   com.workingmouse.webservice.axis.SpringAxisServlet
         </servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>axis</servlet-name>
            <url-pattern>/servlet/AxisServlet</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>axis</servlet-name>
            <url-pattern>*.jws</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>axis</servlet-name>
            <url-pattern>/services/*</url-pattern>
        </servlet-mapping>     And these bits in our server-config.wsdd :
        <!-- Global config options -->
        <globalConfiguration>
            <parameter name="adminPassword" value="admin"/>
            <parameter name="attachments.Directory" value="./attachments"/>
            <parameter name="attachments.implementation"
                    value="org.apache.axis.attachments.AttachmentsImpl"/>
            <parameter name="sendXsiTypes" value="true"/>
            <parameter name="sendMultiRefs" value="true"/>
            <parameter name="sendXMLDeclaration" value="true"/>
            <parameter name="axis.sendMinimizedElements" value="true"/>
            <requestFlow>
                <handler type="java:org.apache.axis.handlers.JWSHandler">
                    <parameter name="scope" value="session"/>
                </handler>
                <handler type="java:org.apache.axis.handlers.JWSHandler">
                    <parameter name="scope" value="request"/>
                    <parameter name="extension" value=".jwr"/>
                </handler>
        <handler name="acegiAuthenticationHandler" type="java:{our}.AcegiAuthenticationHandler"/>
            </requestFlow>
         <responseFlow>
              <handler name="OutgoingSOAPMessageViewer" type="java:{our}.OutgoingSOAPMessageViewer"/>
         </responseFlow>
        </globalConfiguration>
        <!-- Handlers -->
        <handler name="LocalResponder"
                type="java:org.apache.axis.transport.local.LocalResponder"/>
        <handler name="URLMapper"
                type="java:org.apache.axis.handlers.http.URLMapper"/>
        <handler name="Authenticate"
                type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/>
        <!-- Axis services -->
        <service name="AdminService" provider="java:MSG">
            <parameter name="allowedMethods" value="AdminService"/>
            <parameter name="enableRemoteAdmin" value="true"/>
            <parameter name="className" value="org.apache.axis.utils.Admin"/>
            <namespace>http://xml.apache.org/axis/wsdd/</namespace>
        </service>
        <service name="Version" provider="java:RPC">
            <parameter name="allowedMethods" value="getVersion"/>
            <parameter name="className" value="org.apache.axis.Version"/>
        </service>
        <!-- Global config options -->
        <transport name="http">
            <requestFlow>
                <handler type="URLMapper"/>
                <handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/>
            </requestFlow>
        </transport>
        <transport name="local">
            <responseFlow>
                <handler type="LocalResponder"/>
            </responseFlow>
        </transport>
        <service name="DiaryServices" provider="Handler" style="rpc">
            <parameter name="handlerClass" value="com.workingmouse.webservice.axis.SpringBeanRPCProvider"/>
            <parameter name="springBean" value="diaryServices"/>
            <parameter name="springBeanClass" value="uk.co.trisystems.morph.ta.diary.soap.DiaryService"/>
            <parameter name="allowedMethods" value="createDiary getDiary"/>
            <parameter name="scope" value="application"/>
            <beanMapping qname="ns:diary" xmlns:ns="urn:DiaryService" languageSpecificType="java:uk.co.trisystems.morph.ta.diary.soap.DiarySoapBean"/>
        </service>Cheers
    Tracey Annison

    Hi,
    I have solved the problem, I forgot a parameter in the select, so java tells the an error. But now I have another problem. The procedure doesn't execute the order by. I pass the couple column_name order_type in a string as ("provider_description desc") dinamically but the procedure doesn't execute the ordering. Why?
    Thanks, bye bye.

  • [SOLVED] Extra resolutions for games with Nvidia drivers

    When using the nouveau drivers, games and other such applications will allow me to select any resolution my screens (one 1920x1080, the other 1680x1050-- the latter of which is to the left of the first) will support, as well as 3600x1080, the combined total (spanning both screens). For instance, I can make something like Tux Racer 1280x800, and either windowed or fullscreen. However, with the Nvidia proprietary drivers, the only resolutions that I can select are 1920x1080, 1680x1050, and 3600x1080. This prevents me from playing windowed games in such a way that they don't cover my whole screen, or playing fullscreen games at lower resolutions for higher performance. How can I use the Nvidia drivers and the "extra" resolutions? (Ideally, all those listed in the Xinerama output below)
    Xrandr outputs this:
    Screen 0: minimum 8 x 8, current 3600 x 1080, maximum 16384 x 16384
    DVI-I-0 connected 1920x1080+1680+0 (normal left inverted right x axis y axis) 510mm x 287mm
    1920x1080 60.0*+
    1680x1050 60.0
    1600x1200 60.0
    1440x900 59.9
    1400x1050 74.8 60.0
    1280x1024 75.0 60.0
    1280x960 60.0
    1280x800 59.8
    1152x864 75.0
    1024x768 75.0 70.1 60.0
    832x624 74.6
    800x600 75.0 72.2 60.3 56.2
    700x525 149.5 120.0
    640x480 75.0 72.8 59.9
    512x384 140.1 120.0
    400x300 144.4
    320x240 145.6 120.1
    DVI-I-1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
    1680x1050 59.9*+ 60.0
    1440x900 75.0 59.9
    1400x1050 60.0
    1280x1024 75.0 60.0
    1280x960 60.0
    1152x864 75.0
    1024x768 75.0 70.1 60.0
    832x624 74.6
    800x600 75.0 72.2 60.3 56.2
    700x525 149.5 120.0
    640x480 75.0 72.8 59.9
    512x384 140.1 120.0
    400x300 144.4
    320x240 145.6 120.1
    DVI-I-2 disconnected (normal left inverted right x axis y axis)
    HDMI-0 disconnected (normal left inverted right x axis y axis)
    DVI-I-3 disconnected (normal left inverted right x axis y axis)
    My xorg.conf is:
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "0"
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/local"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Acer G235H"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GTS 450"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-0"
    Option "TwinViewOrientation" "CRT-1 LeftOf CRT-0"
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Last edited by DrKillPatient (2012-07-06 19:29:15)

    brebs wrote:
    Maybe these help:
    http://www.nvnews.net/vbulletin/showthread.php?t=184711
    http://www.nvnews.net/vbulletin/showthread.php?t=184968
    Thanks. The first link worked, in the sense that my games now have all those resolution options, but now there's a new bug.
    To future readers: a solution has been found for this bug as well, see below.
    My metamodes setting now reads:
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select; nvidia-auto-select {ViewPortI n=1920x1080}; nvidia-auto-select {ViewPortIn=1680x1050}; [b]nvidia-auto-select {ViewPortIn=1600x1200};[/b] nvidia-auto-sele ct {ViewPortIn=1440x900}; nvidia-auto-select {ViewPortIn=1400x1050}; nvidia-auto-select {ViewPortIn=1280x1024}; nvi dia-auto-select {ViewPortIn=1280x960}; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=115 2x864}; nvidia-auto-select {ViewPortIn=1024x768}; nvidia-auto-select {ViewPortIn=832x624}; nvidia-auto-select {View PortIn=800x600}; nvidia-auto-select {ViewPortIn=700x525}; nvidia-auto-select {ViewPortIn=640x480}; nvidia-auto-sele ct {ViewPortIn=512x384}; nvidia-auto-select {ViewPortIn=400x300}; nvidia-auto-select {ViewPortIn=320x240}
    Because I now have included a resolution whose height is 1200 (or so I suppose-- if I remove that part, the issue does not occur), this happens:
    Xrandr output:
    Screen 0: minimum 8 x 8, current 3600 x 1200, maximum 16384 x 16384
    My X screen has the right length, but the wrong height! Now, my desktop seems to span the right area (3600x1080), but if I move my mouse to the bottom of that area, it pans down another 120 pixels. In that area, there's just graphical gibberish, often whatever I had on the screen last time.
    If I use Xrandr to set my screens' output, it works again, butthere a solution within the Nvidia driver settings...
    EDIT: It occurs to me that the setting seems to be taking the largest possible resolution for the X screen based on those metamodes.
    EDIT 2: This is likely intended behavior. The proper virtual resolution (X screen resolution) may be restored by adding
    Virtual 3600 1080
    to the "Display" subsection under the "Screen" section.
    I'll mark this as solved.
    Here's my working xorg.conf, by the way. I've posted only the "Screen" section because that's all I've changed. The rest is in my first post.
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "nvidiaXineramaInfoOrder" "CRT-0"
    Option "TwinViewOrientation" "CRT-1 LeftOf CRT-0"
    Option "metamodes" "CRT-0: nvidia-auto-select, CRT-1: nvidia-auto-select; nvidia-auto-select {ViewPortIn=1920x1080}; nvidia-auto-select {ViewPortIn=1680x1050}; nvidia-auto-select {ViewPortIn=1600x1200}; nvidia-auto-select {ViewPortIn=1440x900}; nvidia-auto-select {ViewPortIn=1400x1050}; nvidia-auto-select {ViewPortIn=1280x1024}; nvidia-auto-select {ViewPortIn=1280x960}; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=1152x864}; nvidia-auto-select {ViewPortIn=1024x768}; nvidia-auto-select {ViewPortIn=832x624}; nvidia-auto-select {ViewPortIn=800x600}; nvidia-auto-select {ViewPortIn=700x525}; nvidia-auto-select {ViewPortIn=640x480}; nvidia-auto-select {ViewPortIn=512x384}; nvidia-auto-select {ViewPortIn=400x300}; nvidia-auto-select {ViewPortIn=320x240}"
    SubSection "Display"
    Virtual 3600 1080
    Depth 24
    EndSubSection
    EndSection
    Last edited by DrKillPatient (2012-07-06 19:31:18)

  • Why portal server can't create an instance of axis.Service class?

    Hi,gurus,
    We developed a uwl custom connector,The time out occured in that custom connector.After adding the time out value from 30s to 300s,the problem still existed.
    The code is like below:
    String endpoint = "http://172.16.127.4:8080/appframe-web/services/WorkItemService";
    Service service = new Service();    // time out code
    Call call = (Call) service.createCall();
    call.setTargetEndpointAddress(endpoint);
    call.setOperationName("wisForPortal");
    call.addParameter("userCode", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);/
    call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
    String temp = "36";
    Object result = call.invoke(new Object[]{temp});
    The time out occured when the portal server create an instance of Service class.Does that mean the server can't find the jars?
    But the object declaration like "Service service=null;" is all right.
    Any ideas?Thanks in advance.

    I have a project called 'Default EAR' in my workspace.
    But I can't add the JAR to the that project. These instructions are for WSAD 4, but I assume WSAD 5 is similar:
    Go to menu File and select Import. Choose "File System" to import from. Specify "Default EAR" as your folder and select the jar file from the directory/browse prompt.
    This is assuming your web app is connected to Default EAR and not some other EAR file. Also once you've done this, you will find that the jar file automatically becomes part of your build path. You didn't have to do anything extra to make that happen.

  • Line chart cuts off x-Axis value

    Hi All,
    Have created a display to display an x-Axis value versus a Y-Axis value using a Line Chart. We want to maximize the chart space so we have removed the Legend from the display, problem is doing this cuts of part of the final x-Axis label and part of the final data point on the graph ? Why - can we move the borders out ?
    Emmett

    Emmett,
    You can "Fake" some extra space out of the right side of the chart by setting the legend colors to blend into the background of the chart.  This includes unchecking the "Use Pen Color?" box and setting the labels in the legend to match as well.  Then simply set the legend to be whatever additional width you need.  Other than this there's not really any other way that I can think of.  Hope this helps.
    Sam

  • Chart options: Y axis scale

    Hi,
    I created a bar chart for a report that simly displays the count for each distinct value of a field.  I would want the Y scale (which displays the count) to only present integer values (its a count, so it's obvious there can't be any non-integer values).  Currently it's set to auto select the range and the number of divisions, for which the range it's ok but the divisions don't always come out as all integers.  From what I can see, the only way to do this would be to set the min to 0, max to the max count on the report (which is normaly what the auto range does), and the number of divisions as the max count minus one.  I don't really see any other way.  Apparently there's no way to do this dynamically (like in a formula), and I don't think I can use static range values.  Is there any way to do this?  I just want to confirm what I know and see if there is any other way to do it.
    Also, this is probably not the forum to post this, but just in case, is there any way to do this programatically in code without needing extra libraries or extra tools?
    Thanks,
    Diego

    First of all, by static and dynamic data, do you mean the options for the chart?
    Also, I don't want to display the max count on the chart.  I would just like to use it on the options for the chart's Y axis as the max value, although I don't think I need to, since the auto scale already does that.  I think the only thing I should need is set the number of divisions to display on the Y axis.  For example, if the chart has two bars, one for lets say color red, and one for color yellow, and lets say on the data there were 4 red and 6 yellow.  So the chart will have two vertical bars, one for red going from 0 up to 4, and one for yellow, going from 0 up to 6.  The chart will automatically make the range on the Y scale go from 0 up to 6, but it might make the divisions at say 1.5, 3, and 4.5.  But I would like it to not use decimal values for those divisions, instead only divide the axis on integer values, like on 1, 2, 3, 4, 5.  To do that, from the options the chart gives me, I can do it by setting a specific number of divisions on the axis (in this case it would be 5 divisions).  I just want to know if there is any way I can set that in a formula or something, of if it just has to be the same value for every report (without having to change it directly on the Crystal Reports editor, because the reports get generated automatically with different sets of data).
    Thanks,
    Diego

  • Plot latitude and longitude on a single axis while time on other axis

    I am trying to plot latitude, logitude on y axis while time on x axis from a gps receiver, was not able to do it. I don't want to use google maps i.e the position will be in NMEA and parsed. i have attached a picture which illustrates it.
    Attachments:
    vlcsnap-2014-01-23-08h53m50s28.png ‏173 KB

    Your picture doesn't really tell anything about your problem. If you want help, you need to upload your VI (not a picture of it) so someone can analyze it.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • Array mapping to AXIS tdata

    Assuming following structure defining an array of a 3 member struct:
    typedef struct{
    ap_fixed<8,8> R;
    ap_fixed<8,8> G;
    ap_fixed<8,8> B;
    } RGBPix;
    typedef struct{
    RGBPix Pix[4];
    } slv120;
    slv120 testdata[N];
    The memory structure in software test bench is as expected:
    char* byte_pointer_to_testdata = testdata;
    byte_pointer_to_testdata[0] => Pix[0].R
    byte_pointer_to_testdata[0] => Pix[0].G
    byte_pointer_to_testdata[0] => Pix[0].B
    byte_pointer_to_testdata[0] => Pix[1].R
    byte_pointer_to_testdata[0] => Pix[1].G
    byte_pointer_to_testdata[N-1] => Pix[3].R
    byte_pointer_to_testdata[N-1] => Pix[3].G
    byte_pointer_to_testdata[N-1] => Pix[3].B
    However, when I assign slv120 to AXIS tdata I observe (via chiposcope):
    tdata(7 downto 0) => Pix[0].R
    tdata(15 downto 8) => Pix[1].R
    tdata(23 downto 16) => Pix[2].R
    tdata(31 downto 24) => Pix[3].R
    tdata(39 downto 32) => Pix[0].G
    tdata(119 downto 112) => Pix[3].B
    Is there any reason for this rearrangement? It currently prevent me from generating a fitting data structure to match AXIS video data format
    (see http://www.xilinx.com/support/documentation/ip_documentation/v_vid_in_axi4s/v3_0/pg043_v_vid_in_axi4s.pdf page 14).
    How can I force the arrangement to fit to the needed structure?
    Thanks!
    remark: the SW test above was done using ap_fixed<8,8> while real HW was evaluated with ap_fixed<10,10>,
    HW cosim for any word width is correct.

    Hi Hervé,
    thank you for pointing to the UG section, indeed very powerful stuff!
    By using it I will be able to structure my data according to fit any external requirement.
    Attached is the test project where you can see that a (8 bit) data structure in SW memory
    is different from the generated HDL port structure (as described in my first post here).
    Looking at the HDL output I see that one part, the R member what is set to constant,
    is mapped 4 times to the lower side of the slv120 vector followed by the variable part.
    I do not understand this mapping, it prevent effective work as it forces the user to figure out
    how the actual mapping is applied and to remap this to the required structure.
    More critical, what if in further version of the tool this mapping schema changes ???
    Any idea how I can avoid the extra work?
    Thanks,
    Ric.
    d_o_TDATA &colon; OUT STD_LOGIC_VECTOR (95 downto 0);
    d_o_TDATA <= OUTPUT_STREAM_1_data_reg;
    -- OUTPUT_STREAM_1_data_reg assign process. --
    OUTPUT_STREAM_1_data_reg_assign_proc : process(ap_clk)
    begin
    if (ap_clk'event and ap_clk = '1') then
    if (ap_rst_n_inv = '1') then
    OUTPUT_STREAM_1_data_reg(0) <= '0'; -- .data.Pix[0].R
    OUTPUT_STREAM_1_data_reg(8) <= '0'; -- .data.Pix[1].R
    OUTPUT_STREAM_1_data_reg(16) <= '0';-- .data.Pix[2].R
    OUTPUT_STREAM_1_data_reg(24) <= '0';-- .data.Pix[3].R
    OUTPUT_STREAM_1_data_reg(32) <= '0';-- .data.Pix[0].G
    OUTPUT_STREAM_1_data_reg(33) <= '0';
    OUTPUT_STREAM_1_data_reg(34) <= '0';
    OUTPUT_STREAM_1_data_reg(94) <= '0';
    OUTPUT_STREAM_1_data_reg(95) <= '0';
     

Maybe you are looking for