[]
Gets or sets whether tooltips are displayed for PivotTable cells.
This property indicates whether context tooltips are shown for cells in the PivotTable report.
bool DisplayContextTooltips { get; set; }
Property DisplayContextTooltips As Boolean
worksheet.Range["A1:B4"].Value = new object[,] {
{"Name", "Amount"},
{"A", 100},
{"B", 200},
{"A", 150}
};
IPivotCache pivotCache = workbook.PivotCaches.Create(worksheet.Range["A1:B4"]);
IPivotTable pivotTable = worksheet.PivotTables.Add(pivotCache, worksheet.Range["D1"], "SalesPivot");
bool displayContextTooltips = pivotTable.DisplayContextTooltips;