The "align" property has similar problems.  Use CSS to center the divs with 
the margin-left and margin-right properties:

<div id="wrapper">
    <div>
        <div id="header-wrapper">
            <div id="header">...</div>
        </div>
        <div id="menu-wrapper">...</div>
        <div id="page">...</div>
        <div id="footer">...</div>
    <div>
</div>


In CSS:

#header, #menu-wrapper, #page, #footer {
    margin-left: auto;
    margin-right: auto;
}

A few other notes: I see instances of the "align" property elsewhere, you 
should remove these and replace them with equivalent CSS.  Also, you should 
remove the negative margin on the table that contains the "Index/Stock", 
"Stock Name", "Valuation", etc form fields, as it is not necessary when you 
use margins to center the divs.

On Friday, March 7, 2014 8:42:11 AM UTC-5, Abhishek Agarwal wrote:
>
> Hi ASGallant
>
> Thanks for your help. You have always helped novice like me. 
> As per your suggestion ,I tried putting it in correct div blocks of html 
> now but still not able to view the tooltip values correctly. 
>
> I can see tooltip for some points but once the the graph direction changes 
> tooltip disappears. 
> I am attaching the snapshot where tooltip is appearing but if we go left 
> from there, the tooltip stops appearing.
> It is generally happening for all graphs where direction changes. 
> I am still seeing the following messages in firebug
>
> Expected pseudo-element but found 'root'.  Ruleset ignored due to bad 
> selector. ui+en.css:2
> Unknown property '-moz-opacity'.  Declaration dropped. ui+en.css:2
> Expected 'none' or URL but found 'alpha('.  Error in parsing value for 
> 'filter'.  Declaration dropped. ui+en.css:2
> Error in parsing value for 'height'.  Declaration dropped. 
> optionstrategy.html
> Error in parsing value for 'width'.  Declaration dropped. 
> optionstrategy.html
> Error in parsing value for 'padding-left'.  Declaration dropped. 
> optionstrategy.html
> Error in parsing value for 'margin-left'.  Declaration dropped. 
> optionstrategy.html
>
> Expected identifier for pseudo-class or pseudo-element but found ' '.  
> Ruleset ignored due to bad selector. tooltip.css:3
> Unknown property '-moz-box-shadow'.  Declaration dropped. tooltip.css:14
> Error in parsing value for 'cursor'.  Declaration dropped. tooltip.css:21
> Error in parsing value for 'float'.  Declaration dropped. tooltip.css:53
>
> Thanks for your help once again.  
>
>
>
> On Monday, March 3, 2014 11:24:00 PM UTC+5:30, asgallant wrote:
>>
>> I suspect that the problem stems from the chart container being a child 
>> element of <center>.  The <center> tag is no longer supported under 
>> HTML5, so you should strongly consider changing to using CSS to center 
>> elements instead of using this tag.
>>
>> On Saturday, March 1, 2014 8:09:39 AM UTC-5, Abhishek Agarwal wrote:
>>>
>>> Hi,
>>>
>>> I have created graphs using google visualization charts but I am not 
>>> able to see tool tips associated with their points. they were appearing for 
>>> me earlier but now they are not appearing after I changed my style sheet. 
>>> Firebug showed me following in console output logs.
>>>
>>> Expected pseudo-element but found 'root'.  Ruleset ignored due to bad 
>>> selector. ui+en.cs
>>> Unknown property '-moz-opacity'.  Declaration dropped. ui+en.css:2
>>> Expected 'none' or URL but found 'alpha('.  Error in parsing value for 
>>> 'filter'.  Declaration dropped. ui+en.css:2
>>> Error in parsing value for 'height'.  Declaration dropped. 
>>> optionstrategy.html
>>> Error in parsing value for 'width'.  Declaration dropped. 
>>> optionstrategy.html
>>> .....
>>> Error in parsing value for 'padding-left'.  Declaration dropped. 
>>> optionstrategy.html
>>> Error in parsing value for 'margin-left'.  Declaration dropped. 
>>> optionstrategy.html
>>>
>>> Steps to create chart
>>> 1. URL optionstrategy.co.in/optionstrategy.html
>>> 2. Fill the combobox as shown n snapshot and click on My strategy Button
>>>
>>> The chart generated is not showing tooltip. 
>>> I am asking too much for the reproducer steps but it is blocking my 
>>> functionality
>>>
>>> Thanks in advance
>>> Abhishek
>>>
>>>
>>>

-- 
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