DVT graph not filling entire container width

Experts,
I have a DVT bar graph in my tabbed panel having "AFStretchWidth" set inside a panelHeader. But my graph is not stretching to fit the entire screen. I have also tried to set the "AFStretchWidth" in the graph but not productive.
eg: panelheader having
- panelTabbed styleclass set "AFStretchWidth" containing
- dvt styleclass set "AFStretchWidth"
Any ideas how to make the graph fill the entire container width ?
thnks

Make sure that Tab Panel (or parent of DVT Component) is stretched.
Set dynamicResize property value of DVT to DYNAMIC_SIZE.

Similar Messages

  • TS4085 the image does not fill entire screen of iPad, therefore not the entire TV screen.  Why?

    When I try to mirror a video from my iPad to TV using Apple TV, the video does not fill entire screen of iPad nor the entire screen of my TV,  Is there a way to strech the image to fit screen(s)?

    Welcome to the Apple Community.
    There are two factors in play here. Firstly the iPad screen is 4:3, your TV is 16:9, so when mirroring the mirrored iPad screen is never going to fill the TV screen. If on top of that, whatever you are watching doesn't fill the iPad screen then that too will be reflected in what is seen in the mirrored image.
    You cannot stretch this using the Apple TV or iPad controls, but your TV may have a setting you can use. Generally speaking though this will distort the image and you would likely be best leaving it alone.

  • TableColumn Label not filling entire column

    All
    I have a table column with a Label but when I set the text and say set the background color that does not fill the entire TableColumn.

    Not sure if you mean a column in a row ?
    You can use:
    tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);This will expand the columns to fit the displayable area.
    You can then use setPrefWidth(Double.MAX_VALUE) on the label to tell it to use all space made available by the expanded table cell.
    Label labelToDisplayInTab = new Label("bla bla");
    labelToDisplayInTab.setPrefWidth(Double.MAX_VALUE);Hope this helps.
    If not then please supply a bit more information so that I can figure out exactly where your problem is.

  • External display, image not filling entire screen.

    I just bought a tv to use as a external monitor for my mac however when i boot into windows 7 the resolution (1080p) is fine but its not filling the screen completely, there is 1 inch of black on the top and bottom and about 1.5 inches of black on the left and right sides. it does not do this when i am booted into osx.
    i think this could be because of how hdtv's are made and the resolution isn't exact (usually a little bit greater) so windows isn't "stretching" the image to fill the screen. i think osx does it automatically but windows doesn't. if this is the problem how do i get windows to stretch the image? i tried switching the screen mode on my tv's remote but that didn't work.
    thanks for the help everybody and merry christmas!

    exactly the same for me. fulla hd tv, no problem tv/mac ->full screen; but with bootcamp/win7 no way, even with the new 9.12 Ati driver...
    thnks for help and happy new year

  • GeneralPath not Filling entire path

    Hi,
    i'm trying to draw a graph using a GeneralPath.
    the problem is that if at the bottom it's not wide enough the top ends
    up lower than it's supposed to.
    Here is a crude example (i just put this together as an
    example)please compile and run this program
    -----------------------PathTest.java----------------------------------
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class PathTest extends JFrame implements ActionListener{
    public PathTest(){
    setSize(400,500);
    setTitle("TestGraph's Frame");
    addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e){
    System.exit(0);
    Container contentPane = getContentPane();
    p = new PathPanel();
    contentPane.add(p,"Center");
    String [] tOrF = {"Fill","Just Draw"};
    JComboBox comb = new JComboBox(tOrF);
    comb.setSelectedIndex(1);
    comb.addActionListener(this);
    contentPane.add(comb,"North");
    public void actionPerformed(ActionEvent evt){
    JComboBox comb = (JComboBox)evt.getSource();
    String f = (String)comb.getSelectedItem();
    if(f.trim().equals("Fill"))
    p.setFill(true);
    else
    p.setFill(false);
    p.repaint();
    public static void main(String [] args){
    JFrame frame = new PathTest();
    frame.show();
    PathPanel p = null;
    class PathPanel extends JPanel{
    boolean fill = true;
    public void setFill(boolean fill){this.fill = fill;}
    public void paintComponent(Graphics g){
    Graphics2D g2d = (Graphics2D)g;
    double [] pixPoints = {365.0,290.0,370.0,89.0,375.0,290.0};
    paintPath(g2d,pixPoints);
    double [] pixPoints1 = {10.0,290,200.0,89.0,299.0,290.00};
    paintPath(g2d,pixPoints1);
    public void paintPath(Graphics2D g2d,double [] pixPoints){
    GeneralPath path = new GeneralPath();
    g2d.drawLine(0,(int)pixPoints[1],this.getWidth(),(int)pixPoints[1]);
    g2d.drawLine(0,89,this.getWidth(),89);
    for(int i =0 ; i < pixPoints.length -1;i +=2){
    double pix [] = {pixPoints[i],pixPoints[i+1]};
    if(i ==0)
    path.moveTo((float)pix[0],(float)pix[1]);
    else
    path.lineTo((int)pix[0],(int)pix[1]);
    path.closePath();
    if(fill)
    g2d.fill(path);
    else
    g2d.draw(path);
    as you see the problem is only if i use g2d.fill and not when i use
    g2d.draw.....
    any help would be greatly appreciated
    Thanks,
    Sol

    OK,
    sorry everybody. i just found out that means something when u post it, so here is the source code in code tags..
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class PathTest extends JFrame implements ActionListener{
        public PathTest(){
            setSize(400,500);
          setTitle("TestGraph's Frame");
          addWindowListener(new WindowAdapter(){
            public void windowClosing(WindowEvent e){
                System.exit(0);
          Container contentPane = getContentPane();
           p = new PathPanel();
          contentPane.add(p,"Center");
          String [] tOrF = {"Fill","Just Draw"};
          JComboBox comb = new JComboBox(tOrF);
          comb.setSelectedIndex(1);
          comb.addActionListener(this);
          contentPane.add(comb,"North");
        public void actionPerformed(ActionEvent evt){
            JComboBox comb  = (JComboBox)evt.getSource();
            String f = (String)comb.getSelectedItem();
            if(f.trim().equals("Fill"))
             p.setFill(true);
            else
             p.setFill(false);
            p.repaint();
        public static void main(String [] args){
            JFrame frame = new PathTest();
            frame.show();
        PathPanel p = null;
    class PathPanel extends JPanel{
        boolean fill = true;
        public void setFill(boolean fill){this.fill = fill;}
        public void paintComponent(Graphics g){
            Graphics2D g2d = (Graphics2D)g;
            double [] pixPoints = {365.0,290.0,370.0,89.0,375.0,290.0};
            paintPath(g2d,pixPoints);
            double [] pixPoints1 = {10.0,290,200.0,89.0,299.0,290.00};
            paintPath(g2d,pixPoints1);
        public void paintPath(Graphics2D g2d,double [] pixPoints){
         GeneralPath path = new GeneralPath();
    g2d.drawLine(0,(int)pixPoints[1],this.getWidth(),(int)pixPoints[1]);
         g2d.drawLine(0,89,this.getWidth(),89);
         for(int i =0 ; i < pixPoints.length -1;i +=2){
            double pix [] = {pixPoints,pixPoints[i+1]};
    if(i ==0)
    path.moveTo((float)pix[0],(float)pix[1]);
    else
    path.lineTo((int)pix[0],(int)pix[1]);
    path.closePath();
    if(fill)
    g2d.fill(path);
    else
    g2d.draw(path);

  • Paint Bucket not filling entire selection (CS4/5)

    Hello, I'm a professional cartoonist and have worked in Photoshop since the earliest versions.  Since upgrading to CS4 (and now CS5), I've been having trouble using the Paint Bucket Tool, so I'd appreciate any help here.
    Here's a basic example ...
    1) Imagine a single layer CMYK document.
    2) Draw a closed shape using the Pencil Tool (no antialiasing!) with a color of choice.
    3) Select the inside of this shape using the Magic Wand Tool (again, no antialiasing!).
    4) Fill the selection with the EXACT SAME COLOR using Paint Bucket tool.
    5) Deselect region.
    6) Now use menu options SELECT -> COLOR RANGE ... And click on the filled region (technically, that color should be selected by default since it's your current foreground color).
    7) Click OK
    8) Choose a new foreground color and then Paint Bucket the selected region, BUT make sure you click on the area you filled in Step 4 ... i.e., do not click on a pixel you drew using the Pencil Tool.
    In CS4 and now CS5, the Paint Bucket is not including the pencilled outline when I click fill.  That is, I'm left with the original pencil outline, and the filled region in a new color.
    HOWEVER ... If in Step 8, I'm lucky enough to click one of the original pencil marks, the entire color region fills as it always did in previous versions.
    This has grown increasingly annoying while working with my cartoons because I use the Pencil Tool to "close" gaps in my inked lines, and then the Paint Bucket to fill.  If I decide to change the color of a character's shirt, I'm left with tiny spots in the gap regions.
    Help would be much appreciated!!
    Thanks

    Thanks for your suggestions, Charles.
    Here's a better explanation as to what is happening with visual examples ...
    I ink my cartoons with traditional tools, and then scan a high-res copy into Photoshop.  The black ink is converted to a 2 color bitmap so that there is no anti-aliasing.  This file is then converted to CMYK for coloring.  The black line art becomes the bottom ("Background") layer, and I add a new layer on top for the flat colors.  The flat colors layer is set to "Multiply" so that I can close tiny gaps in my lines with color, without erasing the original black lines.
    Visually ...
    1) Bottom layer is black outline with no antialiasing ...
    2) Create new layer on top for flat colors and set to MULTIPLY.  Using pencil tool (and Wacom Tablet), close the gap with red ...
    3) Because layer is on multiply, you can see that the red in Step 2 is actually this shape ...
    4) Magic Wand to select the area INSIDE of the now closed circle.  Wand is set to "Sample All Layers" so that it selects only the area closed in by the black outline layer AND the red.  Paint bucket this area with the exact same red ...
    5)  Once again, here is what the flat color layer actually looks like since Multiply is on ...
    6) Magic wand the area outside of the circle and fill with a DIFFERENT color ...
    7) Now, suppose you didn't want the circle to be red.  I now select the red using Magic Wand (or Select -> Color Range menu) and click on the red.  An outline appears around the ENTIRE red shape (i.e., you would assume that all of the red has been selected since it is the EXACT same color ... verified using eyedropper tool) ... However, if you click to fill with Paint Bucket, here is the result ...
    8) For some reason, Photoshop is "remembering" the red originally drawn using the Pencil Tool in Step 2 as a separate region ... Even though all of the colors are on the exact same layer ...
    I hope this better explains what I'm experiencing here
    ANY IDEAS???

  • Native resolution does not fill entire external display

    I've got one of the original MacBook Pros with the Mobility Radeon X1600 hooked up to a Samsung P2350G display (it's a 23" LCD panel.) The native resolution on the display is 1920x1080.
    The display has inputs for both VGA and DVI. The DVI port however is used by a desktop PC already, so I use a DVI to VGA adapter on the MacBook Pro, and use the laptop panel as a secondary display.
    The problem is that when I set the external display to its native resolution, I get vertical letterboxing and some flickering along the edges of the image. It does not horizontally fill the whole display as it should. I have tried the same adapter on the PC and it worked fine (though with rather spotty image quality.)
    Resolutions that are lower than 1920x1080 work fine and fill the whole display properly. I'm not exactly sure what the issue is. The laptop is only semipermanently attached to the large display so I can live with a reduced image quality there, but the flickering, slightly distorted image is just not acceptable right now.

    Sounds like it might be a sync issue. Have you tried powering the monitor off and then back on with the MBP connected to it? How about just temporarily disconnecting the DVI cable from the desktop PC and using that to plug into the MBP.

  • Spry MenuBar2 css Link not filling entire row

    I am not sure, but I swear I had this working earlier on.
    The subMenu links displayed properly in FF & IE but now
    the Link wraps around the text only in IE and shows the rest of the link row
    without the hover link.
    Has anybody got any clues on what to fix in the CSS?

    On or about line 306 the position:absolte causes the menu to disappear behind the vertical menu.
    On or about line 593, change the width to 12.1em
    Gramps

  • InputText not filling entire popup

    JDev 11g.
    I have a popup that includes the following:
    Panel Window
    - Panel Label and Message
    - - Facet - End
    - - - InputText (Rows 5 - Wrap Hard)
    InputText (Rows 5 - Wrap Hard)
    In looking at the rendered code, both InputText controls are writing a textArea but the written textArea is too small for the table the encapsulates it.
    If I use a development tool and add style="width:300px", the text area will fit correctly, but I cannot find where this can be done in JDev.

    Thank you for the reply but that did not fix my issue.
    I also added a border around my InputText. I see that the width of the border is 300px, but the width of my textArea is still small.
    I looked at the rendered code and what is rendered looks similar to this:
    <table width=300px>
    <tbody>
    <tr>
    <td>
    <textarea>Sample Text</textarea>
    </td>
    </tr>
    </tbody>
    </table>
    The table and associated TD are the correct width but the textarea only takes up a fraction of the TD.
    Edited by: raykdogs on Feb 26, 2013 3:22 AM

  • Apps not filling entire screen!

    Hey,
    I am having a problem with OSX 10.6.8 regarding maximized windows. When I maximize a window (like Safari), it fills up the screen as usual, except that it leaves a strip of a few pixels at the bottom of the screen where I can see my wallpaper through the space. This only happens to maximized windows like Safari or Garageband, not fullscreen programs like games and movies.
    I hope that made sense. Thank you in advance!
    Here is a screen shot that will (hopefully) explain things better. Note that I have changed the wallpaper to a solid bright green so it is easy to see. (click on the picture to see it at a larger size)

    That's perfectly normal.
    In fact in most applications, the green maximise button will cause the window to resize to fit the contents; not to fill the screen. That's the way OS X has always been.
    For true full screen apps you need Lion.

  • Macbook Air connected to External Monitor does not fill entire screen

    Hello All!
    I am having a bit of trouble. I recently purchased a MacBook Air for work, and I bought a Samsung moniter to go connect the Air to when I am in the office. However, when I connect the Air to my moniter the enitre screen doesn't fill up (please see attached pic). Can anyone help?
    Much Thanks!

    UPDATE: I just came back after a visit to the apple service provider here in New Delhi. They have replaced the logic board on my macbook pro and guess what? the situation is still the same. No difference what so ever as far as the screen resolution is concerned. I can still see those black bars in the exact same places i.e. the right hand side as well as on the top of the screen. Even the size of the black bars are still the same.
    I am so upset right now. After trying my best in order to solve this problem I went to the AASP with high hopes. I was very confident that after replacing the logic board this annoying problem would go away but unfortunately that's not the case. Even the Apple Engineer was clueless on how to solve this problem.
    I think I'll call apple care and speak to the customer relations regarding a replacement.
    If any of you can come up with a solution to this problem please let me know.
    I'm all ears!!!

  • Windows 7 desktop does not fill entire screen on macbook pro 17" (mid 2010)

    Hi,
    First of all I apologize for posting such a long question but in order to best describe the problem I am having with my MacBook Pro, I had to mention every detail.
    I recently installed windows 7 x64 home premium on my new macbook pro 17 inch (mid 2010). After successfully installing the bootcamp drivers (version 3.1) I have noticed that my screen resolution has become slightly smaller than before. There are half an inch thick black bars on the right side as well as on the top of the screen.
    This problem is not limited to windows, I'm having the same problem in mac osx after the windows 7 installation. Even on the start up gray screen.
    I have tried almost every trick in the book, adjusting the screen resolution from the display settings menu (which by the way are on 1920x1080), checking all the settings on the nvidia control panel, resetting the SMC, resetting the VRAM, running the hardware diagnostic test (short as well as the long one), formatting the windows partition, formatting the Mac OSX partition then performing a fresh install of both. So far, I have been frustrated with failure.
    After trying my best to resolve this issue on my own, I tried my luck with apple support. The customer representative was very helpful and listened carefully as I explained the problem to him. He asked me first to check for any available updates on my mac osx as well as in win 7. I told him that I had already installed every available update in both the OS's. He then asked me to reset the SMC and after that to reset the VRAM. Even though I had already tried this, I still gave it another shot but that didn't help.
    Since my MBP was still under the standard warranty, (I have also purchased the Apple Care Protection Plan) he asked me to take it to an Apple Authorized Service Provider. I took his advice and went to the nearest AASP. The Apple Engineer over there performed the same steps, adjusting screen resolution, resetting SMC and VRAM, but even he was not able to resolve this problem. He suggested that I should get my graphics cars replaced or if required upon inspection, the logic board replaced. To be very honest, I was very skeptical about his suggestion as the laptop is brand new, hardly 2 months old. How is it possible that there could be a problem with the hardware? I asked him whether it is possible to restore the firmware of the graphics card as the problem could be software related. He said that Apple have not started issuing firmware restoration CD's for the latest mid 2010 MBP's so a firmware restore won't be possible. My best bet would be to get the graphics card replaced or the whole logic board replaced.
    So you see, I have been down almost every possible road which could have lead to resolving this issue but unfortunately I am stuck with it. I hope any of you could offer a different approach in order to get rid of this annoying problem.
    Any help would be highly appreciated. (Trust ME!!!)

    UPDATE: I just came back after a visit to the apple service provider here in New Delhi. They have replaced the logic board on my macbook pro and guess what? the situation is still the same. No difference what so ever as far as the screen resolution is concerned. I can still see those black bars in the exact same places i.e. the right hand side as well as on the top of the screen. Even the size of the black bars are still the same.
    I am so upset right now. After trying my best in order to solve this problem I went to the AASP with high hopes. I was very confident that after replacing the logic board this annoying problem would go away but unfortunately that's not the case. Even the Apple Engineer was clueless on how to solve this problem.
    I think I'll call apple care and speak to the customer relations regarding a replacement.
    If any of you can come up with a solution to this problem please let me know.
    I'm all ears!!!

  • MacBook Pro 17" (mid 2010) desktop does not fill entire screen

    Hi,
    First of all I apologize for posting such a long question but in order to best describe the problem I am having with my MacBook Pro, I had to mention every detail.
    I recently installed windows 7 x64 home premium on my new MacBook Pro 17 inch (mid 2010). After successfully installing the Bootcamp drivers (version 3.1) I have noticed that my screen resolution has become slightly smaller than before. There are half an inch thick black bars on the right side as well as on the top of the screen.
    This problem is not limited to windows, I'm having the same problem in mac osx after the windows 7 installation. Even on the start up gray screen.
    I have tried almost every trick in the book, adjusting the screen resolution from the display settings menu (which by the way are on 1920x1080), checking all the settings on the nvidia control panel, resetting the SMC, resetting the VRAM, running the hardware diagnostic test (short as well as the long one), formatting the windows partition, formatting the Mac OSX partition then performing a fresh install of both. So far, I have been frustrated with failure.
    After trying my best to resolve this issue on my own, I tried my luck with apple support. The customer representative was very helpful and listened carefully as I explained the problem to him. He asked me first to check for any available updates on my mac osx as well as in win 7. I told him that I had already installed every available update in both the OS's. He then asked me to reset the SMC and after that to reset the VRAM. Even though I had already tried this, I still gave it another shot but that didn't help.
    Since my MBP was still under the standard warranty, (I have also purchased the Apple Care Protection Plan) he asked me to take it to an Apple Authorized Service Provider. I took his advice and went to the nearest AASP. The Apple Engineer over there performed the same steps, adjusting screen resolution, resetting SMC and VRAM, but even he was not able to resolve this problem. He suggested that I should get my graphics card replaced or if required upon inspection, the logic board replaced. To be very honest, I was very skeptical about his suggestion as the laptop is brand new, hardly 2 months old. How is it possible that there could be a problem with the hardware? I asked him whether it is possible to restore the firmware of the graphics card as the problem could be software related. He said that Apple have not started issuing firmware restoration CD's for the latest mid 2010 MBP's so a firmware restore won't be possible. My best bet would be to get the graphics card replaced or the whole logic board replaced.
    So you see, I have been down almost every possible road which could have lead to resolving this issue but unfortunately I am stuck with it. I hope any of you could offer a different approach in order to get rid of this annoying problem.
    Any help would be highly appreciated. (Trust ME!!!)
    PS: I have also posted this question on the Bootcamp forums page. Since the problem is not limited to windows 7, I decided to post here as well.

    UPDATE: I just came back after a visit to the apple service provider here in New Delhi. They have replaced the logic board on my macbook pro and guess what? the situation is still the same. No difference what so ever as far as the screen resolution is concerned. I can still see those black bars in the exact same places i.e. the right hand side as well as on the top of the screen. Even the size of the black bars are still the same.
    I am so upset right now. After trying my best in order to solve this problem I went to the AASP with high hopes. I was very confident that after replacing the logic board this annoying problem would go away but unfortunately that's not the case. Even the Apple Engineer was clueless on how to solve this problem.
    I think I'll call apple care and speak to the customer relations regarding a replacement.
    If any of you can come up with a solution to this problem please let me know.
    I'm all ears!!!

  • HT3296 progress bar for left function will not fill entirely

    when using the learn remote feature everything seems to be working fine, except that the left function refuses to fill in the porgress bar, it goes about a fifith of the way and stops. NO error messages just stops. Ideas?

    Here's a good discussion: http://www.gotoandlearnforum.com/viewtopic.php?f=29&t=15581
    Look at the example code that's about 8 replies down.

  • Actual webpage content does not fill entire web browser.

    how do i attach a screen shot to this inquiry?

    This is occurring on only one page of one site, but the page zoom only enlarges the narrow box. In short, the box is still too shallow to view the necessary listed information without excessive scrolling. This is occurring on only my desktop computer, not my laptop.

Maybe you are looking for