/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Defines the tooltip configuration for shapes and connections. * Controls the visibility, content, and styling of tooltips. */ export interface TooltipOptions { /** * Controls whether the tooltip displays when you hover over the item. */ visible?: boolean; /** * Sets custom CSS classes for the Tooltip wrapper element. */ cssClass?: string; }