How to choose if a specific item in a combination chart is a bar or a line? Help

Hi all

I use JDeveloper 12 c.

I've created a combination chart where I chose the name and FkStore as x-axis and I selected 4 data points (amount, AmountPlanned, margin, MarginPlanned) and I wanted to only two of these elements bar and the other two lines.

Although I can make two data points bars and a single line, the last of them is a region of the element type and I wanted to 2 bars and 2 lines.

Is this possible to do? How can I choose what type of element I want for each attribute? I though it might be on the definition page but had no luck there.

Here is a picture of how the element is at the moment: https://www.dropbox.com/s/z3a8746vtbc8sx0/Frederico.png

As you can see, the amount is not a bar, and I wish it were.

Here is the code for the graph:

< dvt:comboGraph id = "chart" 6

value = "#{bindings." AVG_Sales_Geral1.graphModel}.

Subtype = "COMBINATION_VERT_ABS".

shortDesc = "barLineGraphAVG."

styleClass = "AFStretchWidth."

inlineStyle = "width: 700px; height: 400px; ">

< dvt:background >

< dvt:specialEffects / >

< / dvt:background >

< dvt:graphPlotArea / >

< dvt:seriesSet >

< dvt:series markerType = "MT_LINE" / >

< / dvt:seriesSet >

< dvt:o1Axis / >

< dvt:y1Axis / >

< dvt:legendArea automaticPlacement = "AP_NEVER" / >

< name dvt:attributeFormat = "AvgMargin".

ID = 'af11' >

< af:convertNumber pattern = "#{bindings." AVG_Sales_Geral1.hints.AvgMargin.format}.

groupingUsed = "false" / >

< / dvt:attributeFormat >

< name dvt:attributeFormat = "AvgMarginPlanned".

ID = "models af12" >

< af:convertNumber pattern = "#{bindings." AVG_Sales_Geral1.hints.AvgMarginPlanned.format}.

groupingUsed = "false" / >

< / dvt:attributeFormat >

< name dvt:attributeFormat = "PkStore".

ID = "af13" >

< af:convertNumber pattern = "#{bindings." AVG_Sales_Geral1.hints.PkStore.format}.

groupingUsed = "false" / >

< / dvt:attributeFormat >

< name dvt:attributeFormat = "AvgAmount".

ID = "af14" >

< af:convertNumber pattern = "#{bindings." AVG_Sales_Geral1.hints.AvgAmount.format}.

groupingUsed = "false" / >

< / dvt:attributeFormat >

< name dvt:attributeFormat = "AvgAmountPlanned".

ID = "af15" >

< af:convertNumber pattern = "#{bindings." AVG_Sales_Geral1.hints.AvgAmountPlanned.format}.

groupingUsed = "false" / >

< / dvt:attributeFormat >

< / dvt:comboGraph >

If you have an idea, I would appreciate it.

Kind regards

Frederico.

Hi Frederico,

For each series, you can specify the type of marker you want using the dvt:series tag.

Please try this:


         
         
          
          


Hope this helps

Katia

Tags: Java

Similar Questions

  • How can I remove a specific item of a table?

    Hello.

    I have an array of movieclips and when my (controlled with the keyboard) circle hitTests true with one of the clips inside this table I want to delete this movieclip to the table, so when I hitTest it even once, it returns false (I hitTest using a ' for in ' with this table).

    How to remove a specific item of a table?

    Can someone help me? Thank you very much.

    Try:

    yourArray.splice (yourArray.indexOf (yourmovieclip), 1);

  • How to choose the dpi specific when you scan pictures on printer Envy 5530/5535

    Printer using HP Envy 5530/35 on Mac, using HP Scan software app. When you scan pictures I want as much detail as possible. The only option I have to increase the resolution is to use the 'best '. That scans only at about 200 dpi I think. How can I scan at 300 or 600 dpi?

    Mac, Mavericks, entirely software update HP. Purchase printer less than 3 months ago.

    try to go to Preferences system then printers and scanners.

    on the scan tab, click Open scanner

    with this scanning application, you can select the DPI

    If its does not try to click Preview or view details

  • How to choose a specific value in a drop-down list using javascript

    Hello

    I'm looking for a way to select a specific value in a drop-down list (the first value) using javascript? How would I do that? Thank you in advance.

    Here's how you can select the first item without having to know what it is:

    Set the value of the drop-down list to the first element cb1

    var f = getField ("cb1");

    var val = f.getItemAt (0, true);

    If (val) f.value = val;

    Change 0 to a different index if desired, or use-1 for the last item in the list. More information for the field getItemAt method is in the Acrobat JavaScript documentation.

  • How the auto fill a field based on the drop-down list unless the specific item is selected

    Hi all

    My apologies if I posted this in in the wrong place, but I am new to these forums, JavaScript and Adobe LiveCycle.

    I am trying to build a form using LiveCycle Acrobat but have problems with the drop-down lists.

    Inititaly I just wanted to fill in the fields in a table based on a matching menu selection dropdown in another table.

    I used the following code and it worked fine:

    Workbook.Content.Table1.Row3.AppropriationDetails.Row4.Cell1::change - (JavaScript, client)

    fFrom var = xfa.resolveNodes ("Workbook.Content.Table1.Row3.AppropriationDetails [*]. Row4.cell1');

    OTF var = xfa.resolveNodes ("Workbook.Content.Table2.Row3.AppropriationDetails [*]. Row4.cell1");

    for (var i = 0; i < = fFrom.length - 1; i ++) {}

    fTo.item (i) .rawValue = fFrom.item (i) .boundItem (xfa.event.newText);

    }

    The problem is that now I want the code above works UNLESS one of the items in the drop-down list is enabled specifically in this case, I want the text box in the other table to display a message such as "Details of the entry in the field below.

    I tried to create an If Else statement using the following code:

    Workbook.Content.Table1.Row3.AppropriationDetails.Row4.Cell1::change - (JavaScript, client)

    fFrom var = xfa.resolveNodes ("Workbook.Content.Table1.Row3.AppropriationDetails [*]. Row4.cell1');

    OTF var = xfa.resolveNodes ("Workbook.Content.Table2.Row3.AppropriationDetails [*]. Row4.cell1");

    for (var i = 0; i < = fFrom.length - 1; i ++) {}

    If (fFrom.item (i) .rawvalue = "Option 3") {}

    fTo.item (i) .rawValue = "enter the details in the field below.

    }

    else {}

    fTo.item (i) .rawValue = fFrom.item (i) .boundItem (xfa.event.newText);

    }

    }

    The code now filled the field with "Enter the details in the field below" any item I select in the drop-down list.

    Your help is greatly appreciated.

    See you soon,.

    ozzy_q

    Hello

    You use .rawValue in the change event. This will cause problems because the selection of the users has not received .rawValue from the drop-down list at the time when the change event is triggered.

    Move your script as it should to the output of the dropdown event.

    Hope that helps,

    Niall

  • How to share photos with specific people

    original title: HOW DO I SHARING of PHOTOS WITH PEOPLE SPECIFIC

    I'M IN THE LIBRARY, WHERE I PUT MY PHOTOS.  THERE IS A GROUP OF PHOTOS I WANT TO SEND ONLY SPECIFIC PEOPLE BUT WHEN I CLICK ON SHARE WITH AND TYPE THEIR NAME IN IT - IT DOES NOT RECOGNIZE THEIR NAME - EVEN IF IT'S IN MY WINDOWS LIVE CONTACTS LIST.  HOW TO CHOOSE SPECIFIC SHARING PEOPLE?

    Your library windows 7 and sharing with is for other users on the same computer and other machines on the same home network.

    If you want to share by E-mail, you will need to open and use windows photo gallery, and skydrive lets share direct links to the files.

    http://Windows.Microsoft.com/en-us/Windows-Live/Photo-Gallery-get-started?T1=T3

    Homegroup from start to finish
    http://Windows.Microsoft.com/en-us/Windows7/help/HomeGroup-from-start-to-finish
    File sharing essentials
    http://Windows.Microsoft.com/en-us/Windows7/file-sharing-essentials

    Share files with anyone
    http://Windows.Microsoft.com/en-us/Windows7/share-files-with-someone

  • How to choose a layer to the layerset?

    Hello world!

    I used the script for the selected layers. If the layer is a layer group, an error occurs when you call the function:

    doc.activeLayer = app.activeDocument.artLayers.getByName (nameLayer);

    error - no items of this type.

    How to choose the layer is in a group of layers or out of the Group? Thank you

    Yes-)

    LayerSet

  • How to choose an icon for a pinned tab?

    I created a two pinned tabs. We have a very generic icon and the other has no icon. How to choose an icon for the pinned tabs? Can it be done? Using a hack is fine too.

    You can probably do it with the code in the userChrome.css file.

    Here is an example that works for Gmail.

    Add code to the file userChrome.css below default @namespace.

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    #tabbrowser-tabs .tabbrowser-tab[pinned][label^="Gmail"] .tab-icon-image {
     list-style-image: url("https://ssl.gstatic.com/ui/v1/icons/mail/images/favicon5.ico") !important;
    }
    

    The file userChrome.css (UI) customization and userContent.css (Web sites) are located in the folder of chrome in the Firefox profile folder.

  • How to choose the display by default when you use two screens on my Mac Pro?

    How to choose the display by default when you use two screens on my Mac Pro?

    The default view when you have several is made that you drag the little icon in the menu bar in this pane:

    .

  • When you export (share) a project, how to choose the thumbnail of the freeze frame which restores the clip?

    I just shared (exported) a project that is a simple take a clip for a friend who has downloaded on its website. The problem is that, when the video ends by playing on his site, he returned to a freeze frame that seems completely random and is not the image I want. How to choose the exact image that the video will return as "thumbnail by default?"

    Thank you

    Kevin

    Cannot set lla at the FCC. Many layout site Web apps will allow you to set the poster frame for the video files.

  • How to choose the download location? download automatically to the users in c drive folder. I want to change it... Please help me...

    How to choose the download location? download automatically to the users in c drive folder... I want to change my office... Please help me out...

    Tools-> Options-> save-> click on the Browse button and find the folder where you want to save the files.

  • Download a update, I get this message,"you don't have the appropriate permissions. Choose another directory for registration. How to choose another directory for registration?

    Trying to update from Mozilla, I get the error message following, "the file would be not saved because you do not have the appropriate permissions. Choose another directory for registration.

    How to choose another "directory" of record?

    Press Alt + E and then N to bring up your preferences. On the general tab, check the option "always ask me where to save files.

  • How to choose what Firefox 5 profile will use when it opens?

    I have several profiles in FF5. At each opening of FF, it opens with a different profile. So, how to choose what Firefox 5 profile will use when it opens?

    Type, it is in the Run dialog box: firefox.exe - p. This will bring up the Profile Manager where you can select the default profile. (See the screenshots)

  • How can I delete a specific cookie, not all, Safari 9.0.3?

    How can I delete a specific cookie, not all, Safari 9.0.3?

    I'm running Safari on El Capitan, 10.11.3 on a late 2008 macbook pro.

    Safari-> Preferences-Privacy-> select 'Détails', the list of cookies, find the cookie you want to delete, and then click 'remove '.

  • HP pavilion 15-e034tx: how to choose the right RAM for laptop

    How to choose the right RAM for my laptop (Pavilion 15-e034tx). I know I should buy DDR3 ram.

    Are there other factors should I consider when buying one? I got 2 slots for ram, which od these combos are possible?

    1-4 + 4 GB
    2-4 GB + 8 GB
    3-8 GB + 8 GB

    Thank you

    From the Manual:

    Two customer accessible/upgradable memory module slots

    Support for dual channel DDR3L (1600 MHz)

    Support 8192 MB RAM system in the following configurations:

    8192 MB (8192 MB × 1, × 4096 MB 2)

    Manual download link

    See page 53 for instructions. Memory access is easy via the service Panel. This is the part number for the approved 4 HP concert module:

    4 GB (PC3L, 12800, 1600 MHz) 691740-001

    http://www.Amazon.com/HP-691740-001-4GB-1600MHz-PC3L-12800/DP/B00CI08FX4/ref=sr_1_2?ie=UTF8 & qid = 1451655870 & SR = 8-2 & Keywords = 691740-001

    A 8 GB module is listed in the manual, and it's a 3rd generation of processor i5 I suspect 2 x 8 = 16 concerts would work, but strictly following the manual your only option is to add a 4 GB for a total of 8. Most users really not more 8 GB and adding a second identical module will allow two-channel operation, so you should see a noticeable jump in the overall performance.

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

Maybe you are looking for