Does dvt:graph support stepped area curve?

Hi,
Does dvt:graph support stepped area charts?
Meanwhile I found following for line charts but nothing similar for area chart:
<dvt:series markerType="MT_STEPPED_LINE"/>
regards
Peter
Message was edited by:
hofespet

Hi,
ADF DVT graph does not support Stepped area charts, but we do have plans to add them in the future. But for now we only support 2 types of stepped lines: MT_STEPPED_LINE & MT_CENTERED_STEPPED_LINE.
Thanks
Katia

Similar Messages

  • What kind of online backup tools does iCS have? And are other backup mechanisms supported?

    What kind of online backup tools does iCS have?
    And are other backup mechanisms supported?
    <P>
    With iCS2.x, the admin utilities provide `csbackup` command to backup
    individual calendar or the whole calendar database. Solstice/Legato
    backup functionality is also available. The advantage with the Legato
    backup is that the administrator can, in addition, perform backup per user.
    (Legato backup utilizes csbackup and csrestore for calendar backup/restore.)
    Please refer to the section on Backup and Restore Procedures in the
    iPlanet Calendar Server Administration Guide:
    http://developer.iplanet.com/docs/manuals/calendar/ics20/calag/calagadm.htm#1062608
    Although it is not yet documented in the 2.x Admin guide, <b>`csbackup -l`</b>
    is the command used for initiating Legato backup directory structure (refer to
    Step 1 under Backing Up Calendar Server Data).

    What kind of online backup tools does iCS have?
    And are other backup mechanisms supported?
    <P>
    With iCS2.x, the admin utilities provide `csbackup` command to backup
    individual calendar or the whole calendar database. Solstice/Legato
    backup functionality is also available. The advantage with the Legato
    backup is that the administrator can, in addition, perform backup per user.
    (Legato backup utilizes csbackup and csrestore for calendar backup/restore.)
    Please refer to the section on Backup and Restore Procedures in the
    iPlanet Calendar Server Administration Guide:
    http://developer.iplanet.com/docs/manuals/calendar/ics20/calag/calagadm.htm#1062608
    Although it is not yet documented in the 2.x Admin guide, <b>`csbackup -l`</b>
    is the command used for initiating Legato backup directory structure (refer to
    Step 1 under Backing Up Calendar Server Data).

  • When does Photoshop cc supports the raw files wich are coming from the Nikon D5500 ?

    Hello,
    When does Photoshop cc supports the raw files wich are coming from the Nikon D5500 ?
    Iam a very happy user of Photoshop, specially for my raw files... i find it frustrated that i can't work on my files for now..
    Greatings Danny

    The D5500 was just released and Adobe is working on support. Cannot say how long for sure, but it should be within a month or two. Meanwhile, you could shoot in NEF+JPEG and set Camera Raw to open your JPEGs as well. Not as much data, but will be better than nothing..
    Benjamin

  • Bug in dvt:graph tag? Cannot set graphType attribute using EL expression

    Dear all,
    First thing sorry if this is not the correct forum, but I have a problem that is driving me crazy with ADF DVT tags in JDeveloper environment.
    I'm working with DVT tags to display some graphs in my application. I need to decide at runtime the type of graph I'm going to render in my page, because the type of graph is stored in a database. Also, I use tabular data instead of Data controls, because I have to reuse POJO objects from an existing model tier.
    I have seen that you can bind the graphType attribute of <dvt:graph to a backing bean property, as explained in : http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_graph_howto.html. You can even change the type dynamically responding to user actions, ie : you can change for example from BARS to AREAS or whathever. So far so good, the problem is that I have tried the simplest example possible and it seems that I cannot bind the graphType attribute to a backing bean property using an EL expression.
    In my example, the backing bean has a type property with fixed value AREA_VERT_ABS, but it renders as a BAR_VERT_CUST, that is to say, it completely ignores the binding for the graphType attribute, but the binding for the tabularData attribute works properly because it renders the dummy data provided. I have tried with other types of graphic and it always renders as BAR_VERT_CUST.
    I'm working with JSF 1.2 + Facelets + JDeveloper 11.1.1.2.0 and the integrated weblogic server.
    My page is a facelet page as follows :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:dvt="http://xmlns.oracle.com/dss/trinidad/faces">
    <af:document id="d1">
    <af:form id="f1">
    <dvt:graph id="g1" graphType="#{graphBean.type}" tabularData="#{graphBean.tabularData}" >
    </dvt:graph>
    </af:form>
    </af:document>
    </f:view>
    My backing bean :
    public class GraphBean {
    private String type = "AREA_VERT_ABS";
    public GraphBean() {      }
    public String getType() {
    return type;
    public List getTabularData() { // here I return a hardcoded list that is properly displayed ///
    Note : the sam page but changing #{graphBean.type}" by "AREA_VERT_ABS" renders properly :
    <dvt:graph id="g1" graphType="AREA_VERT_ABS" tabularData="#{graphBean.tabularData}" >
    </dvt:graph>
    Any advice will be very much appreciated.
    Thanks and regards,
    Plan.

    Hello,
    Actually the setter is not needed because the tag only reads, but it does not update the backing bean.
    Anyway for verification pourposes I have changed to the following version without results.
    Anyone from Oracle could give me some light ?
    public class GraphBean {
    private String type = "AREA_VERT_ABS";
    public GraphBean() {      
    public void setType(String type) {
    this.type = type;
    public String getType() {
    return type;
    }

  • Does oracle10g is supported by XML editor XML Spy??

    All:
    I have installed XMLSpy 2004 R3 professional edition and trying to Connect Oracle XML DB.
    But I am getting error that "Invalid userId or Password".
    I am trying to connect to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Does XML Spy supports Oracle 10g? if so which version?
    ANd Plz let me know the steps to Connect..
    I appreciate your help and Thanks in Advance.....
    Srikanth

    You first create a special user for XML DB in this case xml_dev with password masterkey:
    CREATE USER xml_dev IDENTIFIED BY masterkey
    TEMPORARY TABLESPACE temp
    DEFAULT TABLESPACE users;
    GRANT connect, resource, dba, xdbadmin TO xml_dev;
    CONN xml_dev/masterkey@LOR;
    Create some repository folders:
    DECLARE
    v_return BOOLEAN;
    BEGIN
    v_return := dbms_xdb.createFolder('/home/DEV/');
    v_return := dbms_xdb.createFolder('/home/DEV/xsd/');
    v_return := dbms_xdb.createFolder('/home/DEV/lom/');
    COMMIT;
    END;
    Then connect with http or WebDav with port 8080 (maybe what you are missing) :
    http://<server>:8080/home/DEV/xsd/
    In XML Spy just put the URL user and password, in this case:
    http://<server>:8080/home/DEV/xsd/
    User: xml_dev
    Pass: masterkey
    Varify that you have the http server (apache) running on the server.

  • ADF DVT graphs drillAction

    I am following the link to eanble drilling in my ADF DVT graphs - http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12418/tagdoc/dvt_graph.html
    It describes DrillActions as
    drillAction String Yes Refers to a backing bean method. The method will be processed when a label slice on an axis is drilled.
    1) How to make the label slices drillable?
    I am using a data control to plot my graph.
    I have added drillingEnabled, and drill listeners to my code as follows, but its not working
    <dvt:graph shortDesc="Graph" id="g1" value="#{bindings.EmpGrpViewObj1.graphModel}"
    drillingEnabled="true"
    drillRequestingListener="#{pageFlowScope.backing_test.onClickDrill}"
    drillRequestedListener="#{pageFlowScope.backing_test.onClickDrill1}"
    animationOnDisplay="auto" animationOnDataChange="alphaFade"
    />
    Also I am follwoing link - http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12418/tagdoc/dvt_pivotTable.html
    which says Drill operation is available only when underlying data control supports it. Does same applies for graph as well? I mean, if datacontrol used to define graph, then it should support drill operation. How to make data control to support drill action for graphs?

    some comments floating here
    Drilldown in ADF DVT charts using data control

  • Does CSR 1000v support HA feature & how?

    Does CSR 1000v support HA feature?
    I noticed that redundancy command support in configuration mode,but neither sso/ha mode can config,
    Router(config-red)#?
    Redundancy configuration commands:
      default   Set a command to its defaults
      exit      Exit from redundancy configuration mode
      main-cpu  Enter main-cpu mode
      mode      redundancy mode for this chassis
      no        Negate a command or set its defaults
      timer     Select a timer to configure
    Router(config-red)#mode ?
      none  no redundancy
    Router#show platform 
    Chassis type: CSR1000V            
    Slot      Type                State                 Insert time (ago) 
    R0        CSR1000V            ok, active            00:18:57      
    F0        CSR1000V            ok, active            00:18:57      
    Is it possible to enable HA feature in csr1000v?
    I noticed that in startup, R1 was insert,but not online,which was in disabled state.

    Alan,
    HA provided across a network segment within AWS is not a simple solution due to the restrictions that they place on the L2 segments.  As an example, here is Amazon's suggestion for NAT HA:
    http://aws.amazon.com/articles/2781451301784570
    With that said, we're working on documenting a solution that will work around some of the restrictions through overlaid connections.  At a high level, one way that you can do this is with a couple of CSR1000Vs connected via a GRE tunnel over their Amazon segment.  You then would have to setup BFD and configure an EEM script to watch for a peer down event.  This script would then have to modify the AWS VPC Routing table (the VPC gateway) so that the hosts use the appropriate CSR as an exit point.  The unfortunate piece is that from the CSR1000V we cannot call the AWS API directly so this requires use of a second EEM script to SSH to a helper VM and execute the AWS VPC commands.  Hopefully within the next couple of weeks we will have a configuration guide to step through the individual components, as there are many moving parts.  At a high level this solution was presented in the Cisco Live session BRKARC-2023 around slides 35-40 (Session PDF) are some of the network diagrams and an example of the EEM script.  
    With that said, another solution that you might consider is Cisco InterCloud:
    http://www.cisco.com/c/en/us/td/docs/solutions/Hybrid_Cloud/InterCloud/InterCloud/Cirrus_2.html
    This allows for a secure Layer 2 extension from your data center into the public cloud which could remove some complexity in dealing with the AWS infrastructure.  This solution is not one that would be for the one off, single CSR type deployment, however if you are looking at scale it could be a good alternative.  
    As for TAC support with the Advanced License, this is the hourly paid model that we have within Amazon.  Support for this type of licensing is currently only offered through the support forum, however we are looking at other options that could allow direct TAC engagement on a case by case basis rather than a term license.  Depending on where you are at with regards to your deployment it may be appropriate to engage your Cisco Account Team to help determine which solution is best for you.  I can help track them down if you want to send me a private message.
    -Nick

  • Does iMovie 11 support native AVCHD (.mts) files?

    Native AVCHD file support is the first thing I expected for the new iMovie. Does iMovie 11 support native AVCHD (.mts) files? Or it has the same painful way of importing and converting AVCHD files to the other format like iMovie 09?
    Is there any improvements for AVCHD file supports in iMovie 11?

    I don't think it does. I picked up a copy this afternoon after the keynote (I like the way that Apple stores have them in stock right away - and at $49 it wasn't really a painful experiment) hoping this would be the case, but it does not appear to be so.
    After installing, I tried to import some loose .mts files, but they are greyed out. Some brief exploring turned up nothing to help.
    This is really too bad. It would be so nice to be able to save the individual .mts file on my hard drive, and access them when necessary. I'm fine with the intermediate encoding iMovie does before editing, but forcing me to use the silly file structure of my camera's hard drive, or an iMovie archive (basically the same thing) is frustrating.
    Allowing the import of naked .mts files would be a huge step forward.
    Assuming I'm not wrong about this, what is the best way to work around this? What is the best way to bring loose .mts files into iMovie? (And I hope I'm not hijacking the thread by asking this.)

  • Does K8NGM2-FID support Athlon 64 3700+

    Does the K8NGM2-FID mb support the Athlon 64 3700+ cpu? This cpu isn't listed on the mb product page nor is the mb listed on the CPU support page.

    Quote from: BernardP on 03-February-06, 00:14:39
    Hi, I am new here. I am thinking about buying a K8NGM2-FID, but not too keen about the still immature BIOS. 
    I note 2 things about the CPU Compatibility List for this board:
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_cpu_support_detail.php?UID=702&kind=1
    ---There is an error on the list, as both the 3700+ and the 4000+ with E6 stepping are presented as "Toledo core". In fact, Toledo is Dual Core (see a bit higher in the list). 3700+ and 4000+ E6 stepping are also San Diego core, like the E4 stepping of these processors.
    --- At the top of the list, there is a link to "Since BIOS Version..." The link is to BIOS 3.1 released less than 3 weeks ago. We can't know for sure if the 3700+ E6 is supported in the previous BIOS 3.0 that is present on boards currently in the retail channel. I would like to know if the 3700+ and 4000+ E6 are supported in BIOS 3.0
    One has to be careful about a potential Catch-22 situation. If the board you buy today doesn't support your processor, it might refuse to boot. It will then be impossible to use the computer to download the new BIOS required to support the processor.
    Thanks
    My 3700+ is San Diego core. It is supported even in 3.0 bios. I don't have a E6 core and cannot confirm whether it is supported or not.

  • What does label mean on step 3 of 1-click?

    When in 1-Click for orderinng photos, what does label mean for step 3 under shippingg address?

    Hi DougS,
    You are right, it is "LM", which stands for Link Master device. On the other hand, you can also change the device type to Basic Device by choosing right-click menu item "Change Device Type" in NI-FBUS Configurator 3.1 version.
    To answer your last question: Yes, National Instruments has been supporting this product all along; in fact, the latest version of NI-FBUS Configurator is 3.1, which supports off-line configuration and supports many new interfaces like PCI-FBUS, PCMCIA-FBUS S2 and HSE/H1 linking device.
    Please feel free to contact us if you have any question on NI fieldbus products. You can just send e-mail to "[email protected]", we'll be happy to help you out.
    -- NI Fieldbus Support Team

  • What type of HDD does MS-6382 support?

    Hi,
    My system has a MS-6382 mobo & I've got to change to the hard drive. I've been looking at ebay & the link below describes a HDD which has "ATA/133 or SATA interface and capacity of  120 GB"
    http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&category=16178&item=5208766733&rd=1
    I don't know much about computers, or even the right questions to ask really, but does the 6382 support 7200rpm drives, ATA/133? What general specs for a HDD should I be looking for?
    I would be grateful for any help anyone can give!
    Here is some info on my current HDD:
    HD Tune: ST380020A Information
    Firmware version : 3.39
    Serial number    : 5GC0KMYD
    Capacity         : 73.1 GB (~78.5 GB)
    Buffer size      : 2048 KB
    Standard         : ATA/ATAPI-6
    Supported mode   : UDMA Mode 5 (Ultra ATA/100)
    Current mode     : UDMA Mode 5 (Ultra ATA/100)
    S.M.A.R.T                    : yes
    48-bit Address               : no
    Read Look-Ahead              : yes
    Write Cache                  : yes
    Host Protected Area          : yes
    Device Configuration Overlay : yes
    Automatic Acoustic Managment : yes
    Power Managment              : yes
    Advanced Power Managment     : yes
    Power-up in Standby          : no
    Security Mode                : yes
    Firmware Upgradable          : yes
    Partition     : 1
    Drive letter  : C:\
    Label         : MR01-G4
    Capacity      : 74822 MB
    Usage         : 17.54%
    Type          : FAT32
    Bootable      : Yes
    Jorolat

    Quote from: Wonkanoby on 19-June-05, 21:26:02
    ata 133 is just a marketing gimick.............only data moves that fast is 2mb in the drives cache
    the drive will run at about half that speed once the cache is cleared
    dont worry about it
    Er, I got another question
    I'm now looking at this hitachi model:
    http://www.cclonline.com/product-info.asp?id=210&pc=dealtime#
    which has good reviews (probably for others in the range). I originally saw it on ebay but it turns out to be cheaper buying it from the above supplier.
    The question I have is does the MS 6382 support serial ATA? I'm reasonably sure that the above drive is parallel ATA (ie compatable with the MS 6382) because of the manufacturer's info here:
    http://www.hitachigst.com/hdd/support/d7k250/d7k250.htm
    but I thought I'ld ask before I order it or in case I change my mind (again).
    Thankyou for your help
    Jorolat

  • I have an iphone 5s and my phone was working perfectly fine then it turn into a blue screen and after that i tried to restore it but when i do the phone does half of the steps and then it turns into a blue screen and it doesnt work again what can i do?

    i have an iphone 5s and my phone was working perfectly fine then it turn into a blue screen and after that i tried to restore it but when i do the phone does half of the steps and then it turns into a blue screen and it doesnt work again what can i do?

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Malvinfromny wrote:
    ... i tried to restore it but when i do the phone does half of the steps and then it turns into a blue screen and it doesnt work again what can i do?
    If you try all these Steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step... Be sure to make an appointment first...

  • Does Crystal 2011 supports SAP R/3 4.6?

    Friends,
    I would like to know Does Crystal 2011 supports SAP R/3 4.6? Please help.
    Thanks,
    Tilak

    Hi,
    yes, it does. Here is a Screenshot from the CR2011 SPS6 Data Access File
    The (4) indicates:
    (4) SAP servers required to have at least the above patch levels. The following correction notes should be applied to your SAP BW / SAP NetWeaver BI system: 1125433, 1161911, 1162349, 1162416, 1170323, 1230303 and 1007048. OSS Correction Note 1007048 requires a manual configuration step.
    Regards
    -Seb.

  • OK, as always I waited before downloading a new OS and I sure glad I did. On the APP store I sorted comments by most critical...and WHOA...what is Apple doing? No support for Logic 9, MS Office? Is Apple only trying to reach the iphone/iTouch crowd? HELP!

    OK, as always I waited before downloading a new OS and I'm sure glad I did. On the APP store I sorted comments by most critical...and WHOA...what is Apple doing? No support for Logic 9, MS Office? Is Apple only trying to reach the iphone/iTouch crowd? HELP! I was going to buy a new Mac pro & two 27" monitors but until I see some real problem addressing by Apple...I'll keep what I have and see how everything pans out. If anyone has any comments to ally my fears, I welcome them. I've been a devoted Mac user since 1993. 7500; G4; G5; and my latest Mac Pro...Where do I go? Again...HELP!

    Hi there,
    If you look through ALL the reviews, they are mainly good. I feel that Lion is an excellent upgrade, although not essential.
    There have been some issues with MS Office, but right now, it is up to Microsoft to issue a Lion compatible update, which will come in time. Saying this, MS Office has been working fine on my mac, it seems to be an isolated issue.
    Logic 9 seems like a strange issue. Again, an update looks to be coming soon, with Lion support.
    I do not feel that apple only focusing on the iPhone and iPad user base. There are many features carried along, but the machine can still be used for pro tools and use just as well. It still is a fantastic, reliable, fast, easy to use OS, which I have had very few problems with. Some additions you may not use, but they don't get in the way. You will love the new Exposé, Mission Control, as it is great for pro users who have many windows open at once, and the new spaces. You may however, never use Launchpad, but you don't have to, just drag it away from the dock!
    I really reccomend buying a mac with Lion, although if you are worried about bugs, wait a few months for the issues to be ironed out, and updates to be given. Because the update is so very cheap, I really think you can hardly go wrong. Try it out with your current mac, and if you like it, go ahead and buy your new ones.
    Lion is fantastic, albeit maybe rushed.
    Any other queries, just ask,
    Nathan

  • Does Apple TV support wireless connection to the new MacBook Pro retina in an extended display mode?

    Does Apple TV support wireless connection to the MacBook Pro retina display in an extended display mode? What is the output resolution and is sound also transmitted across?

    SB1983, by extended display do you mean mirror?  All MBP since early 2011 support it if they are running OS X 10.8 Mountain Lion.  The resolution will depend on your Apple TV (2 Gen is 720 and 3rd Gen 1080) and wifi, it will lose some quality but I find it minimal.  It does also mirror the sound.
    Jules

Maybe you are looking for

  • Applying Page style sheets to a Content Area.

    We have embeded a Folder within a Content Area that has been published as a Portlet and is displayed within a Page. There is a link within the displayed folder which displays another Folder within the Content Area that we have doctored to appear like

  • Mm invoice line item tax

    Hi all. i am developing purshase tax register. i have taken all data from tables EKPO, EKKO, RKBP, BKPF, BSET. I am getting all data also, but i am unable to find the itemwise tax breakup. i.e. i have all data in internal table but how can i find tha

  • Program Error Prevents Save

    When trying to Save As to a file in my documents in LR 5.3, Elements 12 and PS5 I cannot and receive a Program Error message. I've re-booted twice but the problem persists. Any solutions please? I use a Mac with Mavericks.

  • Possible to lock file and move it afterwards?

    Hi Java-Gurus, I am trying for quite a while now to lock a file (with FileChannel/FileLock) and to move it afterwards. At the moment it seems like the file is locket for my java application as well as for other applications. Is there a way to lock th

  • Why can't I download TV & Film podcasts?

    The 'subscribe' and 'buy episode' buttons are greyed and I can't press them. This is the case with all podcasts available in the iTunes Store. Help please! 1G First Gen Mini   Windows XP Pro