Tooltip

24 May 20191 minute to read

Tooltip can be enabled by using the EnableTooltip property.

NOTE

By default, this property is set to “false”.

  • CSHTML
  • @Html.EJ().Pivot().PivotGauge("PivotGauge1").EnableTooltip(true)

    Tooltip appearance can be customized by overriding its CSS class.

  • CSS
  • .e-pivotgauge-tooltip {
            background-color: #D2E9FE!important;
            border: 2px solid #01465C!important;
            color: #01232E!important;
            border-radius: 5px!important;
            margin-top: 20px;
            text-align: left;
            font: 12 px Segoe UI;
            line-height: 20px;
        }

    Tooltip in ASP NET MVC pivot gauge control