Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions samples/inputs/tooltip/placement/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ export default class TooltipPlacement extends React.Component<any, any> {
<IgrButton
variant="outlined"
id="tooltip-position"
style={{ textAlign: "center" }}
>Click to trigger all supported placements
</IgrButton>

{this.Positions.map((pos) => (
<IgrTooltip
anchor="tooltip-position"
show-triggers="click"
show-delay="0"
hide-delay="0"
sticky
showTriggers="click"
showDelay={0}
hideDelay={0}
sticky={true}
withArrow={true}
placement={pos}
key={pos}
>
Expand Down
2 changes: 1 addition & 1 deletion samples/inputs/tooltip/styling/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class TooltipStyling extends React.Component<any, any> {
<IgrAvatar id="avatar" shape="circle"
src="https://www.infragistics.com/angular-demos-lob/assets/images/avatar/10.jpg"
></IgrAvatar>
<IgrTooltip placement="bottom-start" anchor="avatar">
<IgrTooltip placement="bottom-start" anchor="avatar" withArrow={true}>
Her name is Madelyn James
</IgrTooltip>
</div>
Expand Down