Added a height to the var options and that did the trick. 

   var options = {

            title: 'Used Car Inventory and Opportunities',

            focusTarget: 'category',

            'height': 300,


Thanks! for looking though!

On Wednesday, July 29, 2015 at 11:51:57 AM UTC-7, Daniel LaLiberte wrote:
>
> Hi Robert,
>
> IE7 is old enough that it has fallen off our radar.  We still worry about 
> IE8, though reluctantly.  
>
> If you can produce a stand-alone example of a chart that fails in IE7, we 
> can take a look.  Your example code is not enough to go on, since you 
> didn't include the HTML that could make a huge difference here, and your 
> data could also make a difference.  
>
> Or as asgallant said: "Can you post the code as seen by a browser (open 
> the page in a browser, view the source, and paste it here), so I can 
> replicate the exact circumstances?  There are a number of possible reasons 
> why this could be happening, and I need to see the page in action in order 
> to narrow it down."
>
> On Wed, Jul 29, 2015 at 2:44 PM, Robert Olide <[email protected] 
> <javascript:>> wrote:
>
>> Was there ever a fix for this? I am having the same issue now. :(
>>
>> On Monday, April 22, 2013 at 1:02:19 AM UTC-7, Karthik B wrote:
>>>
>>> Hi all I have been using google charts in my website(asp.net) .It works 
>>> fine on all browsers except ie7 (tested by changing Browser mode).The chart 
>>> gets compressed.below is my code
>>>
>>>
>>> <script type="text/javascript" language="javascript">
>>>    var dataTopItemRgn = new google.visualization.DataTable();
>>>
>>>    function setDataforGraphh()
>>>         {
>>>
>>>
>>>          // Create and populate the data table.
>>>
>>>        var raw_dataRgn = <%= graphTableTopRegionItems %> ;
>>>             var xAxisRgn = [<%=x_AxisTopRegionItems %>];
>>>
>>>
>>>             dataTopItemRgn.addColumn('string', 'Date');
>>>             for (var i = 0; i < raw_dataRgn.length; ++i) {
>>>                 dataTopItemRgn.addColumn('number', raw_dataRgn[i][0]);
>>>             }
>>>
>>>             dataTopItemRgn.addRows(xAxisRgn.length);
>>>             for (var j = 0; j < xAxisRgn.length; ++j) {
>>>                 dataTopItemRgn.setValue(j, 0, xAxisRgn[j].toString());
>>>             }
>>>             for (var i = 0; i < raw_dataRgn.length; ++i) {
>>>                 for (var j = 1; j < raw_dataRgn[i].length; ++j) {
>>>                     dataTopItemRgn.setValue(j - 1, i + 1, 
>>> raw_dataRgn[i][j]);
>>>                 }
>>>             }
>>>
>>>         }
>>>
>>>         function drawVisualizationTopItemsRegion(Type) {
>>>             // Create and draw the visualization.
>>>              var TopRgnItemsdDiv = document.getElementById('TopItemRgn');
>>>
>>>             var chart;
>>>             //chart = new google.visualization.BarChart(TopItemsdDiv) 
>>> ImagePieChart;
>>>             chart = new google.visualization.ColumnChart(TopRgnItemsdDiv);
>>>
>>>               var options = {
>>>                          backgroundColor: '#FAFAFA', is3D: true, colors: 
>>> ['#1591EA'] ,
>>>                            vAxis: { minValue: 5, maxValue: 40}
>>>
>>>         };
>>>
>>>             chart.draw(dataTopItemRgn,options);
>>>             new google.visualization.events.addListener(chart, 'select', 
>>> selectionHandler);
>>>
>>>             function selectionHandler(e) {
>>>                 selection = chart.getSelection();
>>>                 for (var i = 0; i < selection.length; i++) {
>>>                     var item = selection[i]; 
>>>                     alert(dataTopItemRgn.getValue(item.row, 1));
>>>                 }
>>>             }
>>>         }
>>>     setDataforGraphh();
>>>     google.setOnLoadCallback(drawVisualizationTopItemsRegion);
>>>     </script>
>>>
>>>
>>>
>>>
>>> Also attached is the snip of rendering .Please help
>>>
>>>
>>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] 
>> <javascript:>.
>> To post to this group, send email to [email protected] 
>> <javascript:>.
>> Visit this group at 
>> http://groups.google.com/group/google-visualization-api.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> 
>  - 978-394-1058
> [email protected] <javascript:>   5CC, Cambridge MA
> [email protected] <javascript:> 9 Juniper Ridge Road, Acton MA
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to