Skip to content

Files

Latest commit

 

History

History
40 lines (25 loc) · 807 Bytes

Excel.Application.ShowChartTipValues.md

File metadata and controls

40 lines (25 loc) · 807 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.ShowChartTipValues property (Excel)
vbaxl10.chm133209
vbaxl10.chm133209
Excel.Application.ShowChartTipValues
886b2cf9-f6b3-3770-3082-28f2f99863cd
04/05/2019
medium

Application.ShowChartTipValues property (Excel)

True if charts show chart tip values. The default value is True. Read/write Boolean.

Syntax

expression.ShowChartTipValues

expression A variable that represents an Application object.

Example

This example turns off chart tip names and values.

With Application 
 .ShowChartTipNames = False 
 .ShowChartTipValues = False 
End With

[!includeSupport and feedback]