function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
gyani19901.3956550919266765E12gyani19901.3956550919266765E12 

how can i remove name on hover from dashboard vf page.

I have a vf page and in this create the dashboard and i have to remove the box and not showing name , i have to show only total which comes already ,, so how can i remove the name ?
and my vf page code is:

<apex:page controller="controllerFor1ST_MEETINGSS7Days" showHeader="false" sidebar="false">
    <div style="width:255px; height:200px;background-color:#E8E8FF;">
        <apex:chart data="{!data}" height="200" width="250">
            <apex:axis type="Numeric" position="bottom" title="Record Count" grid="true" fields="data1,data2,data3" dashSize="3">
                <apex:chartLabel />
            </apex:axis>
            
            <apex:axis type="Category" position="left" fields="name" title="Assigned">
                <apex:chartLabel />
            </apex:axis>
           
            <apex:barSeries orientation="horizontal" axis="left"  stacked="true"  
                yField="name" xField="data1,data2,data3" title="Meeting - CLE/Presentation,Meeting - Depo,Meeting - Drive By,
                Meeting - Ent - F/U,Meeting - F/U,Meeting - Intro,Meeting - Phone,Meeting - 1st,Meeting - Ent - 1st"  />
      </apex:chart>
      <hr/>
        <table style="background-color:#E8E8FF;width:255px;">
            <tr>
                <td>
                    <img src="{!$Resource.Blue}" style="margin-left:50px;"/>
                </td>
                <td>
                   
                    1st Meetings and 1st Entertains
                </td>
            </tr>
            
            <tr>
                <td>
                    <img src="{!$Resource.Green}" style="margin-left:50px;"/>
                </td>
                <td>
                
                   F/U Meetings and F/U Entertains
                </td>
            </tr>
            
            <tr>
                <td>
                    <img src="{!$Resource.Orange}" style="margin-left:50px;"/>
                </td>
                <td>
                 
                    Drive By/CLE/Other
                </td>
            </tr>
        </table>
    </div>
</apex:page>
User-added image
PratikPratik (Salesforce Developers) 
Hi,

Try setting tips and Highlight attriobute to False in you VF page  <apex:barSeries> component. 

<apex:barSeries tips="false" highlight="false">

Thanks,
Pratik
gyani19901.3956550919266765E12gyani19901.3956550919266765E12
Thanks Pratik,,but using this remove all but i have to show total record on mouse hover,, i have to remove only name.