programitically column for graphic bending series is not displayed for graph creation

I want to dynamically create a number series n when I run my application.
where n can be any value depends on data that I retrieve from the database. below I have pasted the example
(in this example, I took n = 4, CountMax = 4 if I change the CountMax = 6, then it should dynamically generate the 6series having calculated values). Simply copy the code below and paste them into Flex builder and run the application.

in this example, I am facing problem, series of graphics are not displayed. I don't know the reason why his appears not to, if anyone did the solutions to the problem please let me know. my real need is to retrieve Salesforce account data and want to fill the arraylist, and then display the graphic.
-----------------------
<? XML version = "1.0"? >
<! - example showing using mx:LineSeries vs using as to create graphic series by program - >
"" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' creationComplete = "drawChart ()" layout = "absolute" > "
< mx:Script >
<! [CDATA]
Import mx.controls.Alert;
Import mx.charts.series.ColumnSeries;
Import mx.charts.series.LineSeries;
Import mx.collections.ArrayCollection;

[Bindable]
public var categoryArray:ArrayCollection = new ArrayCollection();
[Bindable]
public var sArray:ArrayCollection = new ArrayCollection();
public function drawChart (): void
{
var histMax:int = 25;
var histMin:int = 5;
var countMax:int = 6;
var tmpArr:Array = new Array();
categoryArray.removeAll ();
for (var n: int = 0; n < 10; n ++)
{
tmpArr [n] = histMin + Math.round ((2 * n) / 20 * (histMax - histMin));
categoryArray.addItem({data:tmpArr[n]});)
}

Add a series to the map with the values x and y
Since the berries and the whole series type on a column chart
for (var chartSeries:int = 0; chartSeries < countMax; chartSeries ++)
{
var tmpseries:Array = new array (10);
for (var i: int = 1; i < 10; i ++)
{
tmpseries = 3 * Math.Random ();
}
CS: ColumnSeries var = new ColumnSeries();
columnchart1. Series.Join (= [cs];
sArray.addItem({data:tmpseries});)
columnchart1. DataProvider = sArray;
CS = new ColumnSeries();
cs.dataProvider = sArray;
cs.displayName = "series."
cs.yField = "data";
columnchart1. Series [chartSeries] = cs;
}
}
[]] >
< / mx:Script >
< mx:Panel title = "Dynamic series adding Sample" width = "195%" height = "90%" layout = "absolute" >
< mx:ColumnChart id = "columnchart1" height = "338" width = "396" showDataTips = "true" type = "stacked" x = "10" y = "0" >
< mx:horizontalAxis >
< mx:CategoryAxis dataProvider = "{categoryArray}" categoryField = "data" / >
< / mx:horizontalAxis >
< mx:verticalAxis >
< mx:LinearAxis baseAtZero = "true" maximum = "3" autoAdjust = "true" / >
< / mx:verticalAxis >
< / mx:ColumnChart >
< / mx:Panel >
< / mx:Application >



http://www.Adobe.com/2006/mxml"creationComplete =" drawChart () "layout ="absolute">"

Import mx.graphics.SolidColor;
Import mx.charts.HitData;
Import mx.controls.Alert;
Import mx.charts.series.ColumnSeries;
Import mx.charts.series.LineSeries;
Import mx.collections.ArrayCollection;

[Bindable]
public var categoryArray:ArrayCollection = new ArrayCollection();

public function drawChart (): void
{
var histMax:int = 25;
var histMin:int = 5;
var countMax:int = 3;
var tmpArr:Array = new Array();
categoryArray.removeAll ();
for (var n: int = 0; n< 10;="">
{
tmpArr [n] = histMin + Math.round ((2 * n) / 20 * (histMax - histMin));
categoryArray.addItem({data:tmpArr[n]});)
}

CS: ColumnSeries var = new ColumnSeries();
columnchart1. Series = [cs];
Add a series to the map with the values x and y
Since the berries and the whole series type on a column chart
for (var chartSeries:int = 0; chartSeries< countmax;="">
{
var tmpseries:Array = new array (10);
for (var i: int = 0; i< 10;="">
{
tmpseries = 1 * Math.Random ();
If (tmpseries
> 0.5)
{
tmpseries = 1;
}
on the other
{
tmpseries
= 0;
}
}

var testArrCol:ArrayCollection = new ArrayCollection();
for (var j: int = 0; j< 10;="">
{
var m:Number = tmpArr [j];
var m1:Number = tmpseries [j];
testArrCol.addItem({mData:m.toString(),nData:m1.toString()});)
}
CS = new ColumnSeries();
cs.dataProvider = testArrCol;
cs.displayName = 'Series' + chartSeries.
cs.xField = 'Montana ';
cs.yField = 'nData ';
columnchart1. Series [chartSeries] = cs;
}
}

public void myTipFunction(hitData:HitData):String
{
return (p:System.NET.mail.MailAddress.DisplayName ColumnSeries (hitData.element) +"-" + hitData.item.mData + "\n" + "value:"+ hitData.item.nData "');
}
]]>











Tags: Flex

Similar Questions

  • JTable with custom column model and model table does not display the table header

    Hello

    I create a JTable with a custom table model and a custom column template. However the table header is not displayed (Yes, it's in a get). I have narrowed the problem down in one compilable example:

    Thanks for your help.
    import javax.swing.*;
    import javax.swing.table.*;
    
    public class Test1 extends JFrame
    {
         public static void main(String args[])
         {
              JTable table;
              TableColumnModel colModel=createTestColumnModel();
              TestTableModel tableModel=new TestTableModel();
              Test1 frame=new Test1();
    
              table=new JTable(tableModel, colModel);
              frame.getContentPane().add(new JScrollPane(table));
    
              frame.setSize(200,200);
              frame.setVisible(true);
         }
    
         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
              columnModel.addColumn(new TableColumn(0));
    
              return columnModel;
         }
    
         static class TestTableModel extends AbstractTableModel
         {
              public int getColumnCount()
              {
                   return 1;
              }
    
              public Class<?> getColumnClass(int columnIndex)
              {
                   return String.class;
              }
    
              public String getColumnName(int column)
              {
                   return "col";
              }
    
              public int getRowCount()
              {
                   return 1;
              }
    
              public Object getValueAt(int row, int col)
              {
                   return "test";
              }
    
              public void setValueAt(Object aValue, int rowIndex, int columnIndex)
              {
              }
         }
    }
    Published by: 802416 on October 14, 2010 04:29
    added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    See http://download.oracle.com/javase/6/docs/api/javax/swing/table/TableColumn.html#setHeaderValue (java.lang.Object)
    When the TableColumn is created, the default headerValue is null
    So the header ends up rendered empty label (probably of size 0 if the JTable calculates its size of header based on the size of the default rendering tool).

    It worked:

         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
                    TableColumn col = new TableColumn(0);
                    col.setHeaderValue("Header Title");
              columnModel.addColumn(col);
                    return columnModel;
         }
    

    Published by: jduprez on October 14, 2010 14:09
    Beaten by a fraction of a second!

    Published by: jduprez on October 14, 2010 14:10
    OK, by a split of 17 minutes, specifically: o)

  • adding programitically column in flex series graphic does not display the graph

    <? XML version = "1.0"? >
    <! - example showing using mx:LineSeries vs using as to create graphic series by program - >
    "" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' creationComplete = "drawChart ()" layout = "absolute" > "
    < mx:Script >
    <! [CDATA]
    Import mx.controls.Alert;
    Import mx.charts.series.ColumnSeries;
    Import mx.charts.series.LineSeries;
    Import mx.collections.ArrayCollection;

    [Bindable]
    public var categoryArray:ArrayCollection = new ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart (): void
    {
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll ();
    for (var n: int = 0; n < 10; n ++)
    {
    tmpArr [n] = histMin + Math.round ((2 * n) / 20 * (histMax - histMin));
    categoryArray.addItem({data:tmpArr[n]});)
    }

    Add a series to the map with the values x and y
    Since the berries and the whole series type on a column chart
    for (var chartSeries:int = 0; chartSeries < countMax; chartSeries ++)
    {
    var tmpseries:Array = new array (10);
    for (var i: int = 1; i < 10; i ++)
    {
    tmpseries = 3 * Math.Random ();
    }
    CS: ColumnSeries var = new ColumnSeries();
    columnchart1. Series.Join (= [cs];
    sArray.addItem({data:tmpseries});)
    columnchart1. DataProvider = sArray;
    CS = new ColumnSeries();
    cs.dataProvider = sArray;
    cs.displayName = "series."
    cs.yField = "data";
    columnchart1. Series [chartSeries] = cs;
    }
    }
    []] >
    < / mx:Script >
    < mx:Panel title = "Dynamic series adding Sample" width = "195%" height = "90%" layout = "absolute" >
    < mx:ColumnChart id = "columnchart1" height = "338" width = "396" showDataTips = "true" type = "stacked" x = "10" y = "0" >
    < mx:horizontalAxis >
    < mx:CategoryAxis dataProvider = "{categoryArray}" categoryField = "data" / >
    < / mx:horizontalAxis >
    < mx:verticalAxis >
    < mx:LinearAxis baseAtZero = "true" maximum = "3" autoAdjust = "true" / >
    < / mx:verticalAxis >
    < / mx:ColumnChart >
    < / mx:Panel >
    < / mx:Application >



    http://www.Adobe.com/2006/mxml"creationComplete =" drawChart () "layout ="absolute">"

    Import mx.graphics.SolidColor;
    Import mx.charts.HitData;
    Import mx.controls.Alert;
    Import mx.charts.series.ColumnSeries;
    Import mx.charts.series.LineSeries;
    Import mx.collections.ArrayCollection;

    [Bindable]
    public var categoryArray:ArrayCollection = new ArrayCollection();

    public function drawChart (): void
    {
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll ();
    for (var n: int = 0; n< 10;="">
    {
    tmpArr [n] = histMin + Math.round ((2 * n) / 20 * (histMax - histMin));
    categoryArray.addItem({data:tmpArr[n]});)
    }

    CS: ColumnSeries var = new ColumnSeries();
    columnchart1. Series = [cs];
    Add a series to the map with the values x and y
    Since the berries and the whole series type on a column chart
    for (var chartSeries:int = 0; chartSeries< countmax;="">
    {
    var tmpseries:Array = new array (10);
    for (var i: int = 0; i< 10;="">
    {
    tmpseries = 1 * Math.Random ();
    If (tmpseries
    > 0.5)
    {
    tmpseries = 1;
    }
    on the other
    {
    tmpseries
    = 0;
    }
    }

    var testArrCol:ArrayCollection = new ArrayCollection();
    for (var j: int = 0; j< 10;="">
    {
    var m:Number = tmpArr [j];
    var m1:Number = tmpseries [j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});)
    }
    CS = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries.
    cs.xField = 'Montana ';
    cs.yField = 'nData ';
    columnchart1. Series [chartSeries] = cs;
    }
    }

    public void myTipFunction(hitData:HitData):String
    {
    return (p:System.NET.mail.MailAddress.DisplayName ColumnSeries (hitData.element) +"-" + hitData.item.mData + "\n" + "value:"+ hitData.item.nData "');
    }
    ]]>











  • Graphical user interface does not display properly

    Basically I upgraded my windows build 10 to 10122 yesterday. When I launched Firefox, MISTLETOE is totally screwed and makes Firefox unusable on my machine. This seems to be the specific machine as on a computer that is running the same build 10 windows, there is no problem.

    Please see screenshot. Can someone help me solve this problem? What is the cause?

    You can attach a screenshot?

    • Use a type of compressed as PNG or JPG image to save the screenshot
    • Make sure you do not exceed the maximum size of 1 MB

    You can try to disable hardware acceleration in Firefox.

    • Tools > Options > advanced > General > Browsing: "use hardware acceleration when available.

    You will need to close and restart Firefox after enabling/disabling this setting.

  • Default for graph invites

    Hello

    Is there a way to specify the default value for the guests of graph (statements that are created by dragging the columns section "Graphic invite" in the "Layout" of a graph). Also we can associate the guest with a variable presentation?

    Thank you
    KK

    There is NO way to do this without prompt dasboard KK.
    Hope this has been helpful.., you can close it.

  • Hello, I recently bought a new iMac and I am wanting to install Lightroom for her, but I'm having some trouble with the key to series is not recognized. There is no disk drive on the new Mac, so I can't just pop the disc in. Is there anyway I

    Hello, I recently bought a new iMac and I am wanting to install Lightroom for her, but I'm having some trouble with the key to series is not recognized. There is no disk drive on the new iMac, so I can't blow my disc. Is there a way I can download it simply by using the key to series on my package? I tried the section "Redeem Code", but said air key is not valid. Thank you

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a way to go to a page to download the Adobe programs if you do not have a disk or drive

    -Cloud desktop http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html

    -Cloud Getting Started https://helpx.adobe.com/creative-cloud.html

    -you will need to enter your original serial number during the installation for non-Cloud programs

    - or kglad links in response to #1 here can help https://forums.adobe.com/thread/2081216

    Also go to https://forums.adobe.com/community/creative_cloud/creative_cloud_faq

  • Process of page does not work when column for APEX_ITEM. HIDDEN is not displayed

    I created a region of report based on an SQl query. In the query that I have three columns that should be in a table, but 2 of the 3 columns should not be visible on the report. Therefore, I don't have to Show checked for them in column of the report region attributes.

    In my tests, if I do not display the columns that are in the tables in the report and run the process of page to insert records into a table, I get the error "no data found". Conversely, if I show columns, my insert is successful.

    That's how work bays? Or is there something that I did not properly.

    Here is the query for the report:
    SELECT APEX_ITEM. ASSISTED BY CHECKBOX (1, ROWNUM, "CHECKED");
    APEX_ITEM. Hidden(2,C.PARTY_ID) ID-this is the column I want to hide.
    APEX_ITEM. Hidden(3,C.PARTY_TYPE_CODE) PTYP-this is the column I want to hide.
    C.PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS THE NAME,
    C.PARTY_CASE_ID

    OF THE CASE. C PARTY
    JOIN INTERNAL DN. PERSON S
    ON C.PARTY_ID = S.PERSON_ID

    WHERE C.PARTY_CASE_ID =: P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO =: P18_SEQ


    Thank you
    Keisha

    Published by: user4579720 on 16 Sep, 2009 14:30

    Keisha,

    If you uncheck the "Show" option, then the HTML corresponding to this element is not rendered on the page. Thus, when you try to inspect this element through APEX_APPLICATION. G_F02, it does not exist.

    A trick I use when I want to have hidden items on the page, but does not make them take all space, is to concatenate them to the items that will be visible.

    Using your query for example, I would like to re - write like this:

    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQ
    

    Thus, the second report APEX column will contain the HTML code for the PARTY_ID & PARTY_TYPE_CODE hidden items, as well as the value of PARTY_TYPE_CODE. When you submit the page, you should not have problems.

    Thank you

    -Scott-

    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • AMD graphics card is either not installed or does work does not correctly

    Start my windows 7 Home Edition laptop I get a popup telling me that... AMD graphic driver is either not installed or * 2 * does not properly... Can you help me please?

    What your graphics card and the model? What is your computer brand and model? Type system information in the search box above the Start button for gethe details of your graphics card.

    Send a copy of the relevant error report. Here are some notes on the event viewer reports that can help you. When you have a lot of mistakes, you need to focus on system errors and warnings, even if it's the applications that are giving you grief. Problems with the first sorting system can do the easier application problems. Note the time that the computer is started last and deal first with those at the beginning of the boot. Correct previous errors can be solved later.

    1. normally, when an error occurs on your computer looking in Event Viewer should be your starting point to find a solution. More related system errors are recorded and get an exact copy of the relevant report is important. Unfortunately, is not easy to understand reports and most of the users computer need help with their interpretation. I have to say later interpretation.

    2 Event Viewer includes three main newspapers of Windows. Here's the Application, security, and system. For purposes of troubleshooting system is by far the most important.

    3. to access the system log, select Start, Control Panel, administrative tools, Event Viewer, in the list on the left of the window select Windows and the system logs. Place the cursor on the system, right click and select filter current log. Check the front of the error and click OK and see you only reports errors. Click the Date and time column header to sort. You may need to click a second time to see the last report above.

    4. a tip for posting copies of error reports! Run Event Viewer and double-click the error you want to copy. Click the button copy on the general tab allows you to place a copy in the Clipboard and close Event Viewer. Now start your message and paste it into the body of the message. Make sure that it is the first dough right out of the event viewer.

    5. He cautioned against three types of reports, information, and reports errors. In most situations, it is the error reports that offer the best information but sometimes WARNING reports provide useful clues.

    6. all reports have stamps date and hour and when troubleshooting, it is important to focus on the latest reports. Reports of studies from the point when the computer is started, and then check if a similar report appeared in the previous session. If errors do not repeat investigation as to why they happen is wasted effort.

    7. in the individual reports the most important information is the event ID and Source such as these help when looking for help on the internet. The description is just as important and copy the exact text to use as search criteria greatly helps achieve better results when using Google. Not paraphrase descriptions when other people asking for help.

  • The graphics embedded in an e-mail message is not displayed.

    Using Firefox 5.0 and the last e = mail program, graphics embedded in an e-mail message are not displayed. Transmitted, the graphic appears in the sent mail. This does not work using I.E. 9.0

    • Check the permissions for the domain in the active tab in "tools > Page Info > Permissions.
    • Check that the images are enabled: Tools > Options > content: [X] loading images automatically
    • Check exceptions in "tools > Options > content: Load Images > Exceptions.
    • See the tab "tools > Page Info > media ' for blocked images (scroll all the images with the cursor key).

    If an image in the list is grayed out and there is a check mark in the box "block Images of..." and remove this mark to unlock the images from this area.

    There are also extensions (Tools > Modules > Extensions) and security software (firewall, antivirus) that can block images.

  • Satellite P200 accidents + message: graphic card driver does not work properly

    Hello

    hope that this issue has not been covered before, but I've owned a Satellite P200 for 3 years now, and this week, it crashes all the time.

    When it started going down he gave me a few messages in the sense of "your graphics card/driver does not work properly and windows will be arrested to avoid damage.

    It has progressed to the point where now when I turn it on, I have vertical lines running down the screen and the screen flashes on and outside. Within 20 seconds, it restores the BSOD - 'there was a problem and windows will be arrested. Error Page_Fault_In_Non_Paged_Area"then stops.

    I ran a system restore but the problem remains.

    I have a feeling that my graphics card is toast. Is this good? Are there any other options to try? Thanks in advance for any answers.

    Matt

    Hello

    Sounds like the GPU problem.
    But try the graphics card driver update.
    Use the most recent driver for your graphics card.

    In addition, clean the fans of portable computers.
    Dust and debris could prevent the cooling fans to turn with the best speed and this could lead to a higher temperature which would lead to overheating.
    Use a jet of compressed air. I also use it and it helps to get rid of dust and debris.

    If this is not enough, then a problem of graphics chip would be possible.

  • Satellite C660-26z - Intel graphics driver update is not possible

    I have a Satellite C660-26z. I try to use Trimble/google sketchup (3d modeling program) but keep an error message "Bug splat."

    Google suggested that I up date my permit, when I try to update from Intel, I get an error message telling me it was modified by the Assembly of the computer and communicate with them.

    My driver is Intel(r) HD Graphics Version = 8.15.10.2189
    The program works fine on my other computer 5.

    Any suggestions?

    Hello

    We know that you can not use drivers provided by graphics card manufacturers. Not for laptops. Display drivers are changed by laptop manufacturers to provide the balance between performance and protection of the equipment.

    What you can try is to check if Toshiba offers a newer driver for new models of portable computers.
    Please check on the Toshiba download page - http://eu.computers.toshiba-europe.com/innovation/download_drivers_bios.jsp
    If you can find new display drivers for:
    Satellite L775 (PSK6DE)
    Satellite R700 (PT314E)
    Satellite Pro U630 (PSK01E)

    Please post comments.

  • Samsung Gravity S II - installation error: "CDC series is not installed."

    Original title: hardware device (Samsung Gravity S II

    I bought this smartphone and I tried to connect it to my computer. A message appears saying that the pilot for the series of the CDC is not installed. How can I do that I can synchronize my Galaxy S II?

    Samsung Gravity S II - installation error: "CDC series is not installed."

    You install the sync software that comes with the "phone.  The PC recognizes the "phone and the synchronization software will be running on the computer in order to allow the synchronization."

  • Photosmart eStn C510 series is not a driver error

    Sometimes my wireless printer works fine, but other times it is 'offline' when I try to print and when I troubleshoot I get error: eStn Photosmart C510 series is not a driver.  I reinstalled the driver from the CD and I also downloaded the driver from the HP website.  It will work fine for a while, but then it disappears.  I do not understand why and I would find a permanent problem solution so that I can simply print and don't have to waste his time to solve problems all the time.  Can someone help me with this frustrating problem?

    Hi JeanneDiffenderfer


    1. what operating system is installed on the computer?

    2. do you get errors in the device to the printer Manager?

    I suggest you to check and to provide us with the information about the installed operating system.

    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running


    Also, you can use the HP available for printing and hardware diagnostic utilities and check if this may help solve the problem-

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?OS=4062&LC=en&cc=us&DLC=en&sw_lang=&product=5041262

    http://h10025.www1.HP.com/ewfrf/WC/document?docname=c02073861&LC=en&DLC=en&CC=US&OS=4062&sw_lang=

     

    If the problem persists I would suggest you contact the manufacturer for help support and to check if they can help you get the correct drivers installed for the printer and help solve the problem.

     

    I hope this helps.

  • Graphic controller driver is not compatible. What should do?

    I want to upgrade Windows XP to Windows 7.  The said Upgrade Advisor my Intel 82865 G Graphics Controller driver is not compatible. I have a Dell 3000 older and uses improved graphics.  I assured the graphic controller driver is more recent.  What should do?

    Saturday, November 3, 2012 20:54 + 0000, CADESgate wrote:

    Thank you.

    You are welcome. Happy to help you.

    I know that a clean install is in order.  I know that all components are compatible unless the graphics controller.  I will consider a replacement of this thanks to Intel.  Any advice on how to start this?

    Not looking for a replacement what anyone (unless the Windows 7
    driver does not exist, in which case you need to buy a new video
    card). As I said, go to the Intel website and find a Windows 7
    Driver for the video card here.

    And once again, leaving aside questions of compatibility, will be your
    machine to be OK to run Windows 7 with sufficient speed. ? How much RAM
    do you have? Have big is your hard drive? What is your CPU?

    Ken Blake, Microsoft MVP

  • pictures and graphics are not displayed to the top

    I visited several sites and seen this problem. Some appear and others do not appear, even after right-clicking and then clicking see photo. Any suggestions? I don't know if it's the browser or the computer itself.

    Hello

    1. what application you use to display the image?

    2. what web browser do you use?

    3. doesn't this problem occurs with the particular application or other applications?

    Additional information on the issue to help you further.

    I would also update the graphics drivers from the computer manufacturing and check.

    Updated a hardware driver that is not working properly

    http://Windows.Microsoft.com/en-us/Windows-Vista/update-a-driver-for-hardware-that-isn ' t-work correctly

    If you are using Internet explorer,.

    I suggest to follow the link and check.

    Images are not displayed on Web sites in Internet Explorer

    http://support.Microsoft.com/kb/283807

Maybe you are looking for