Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Hovering over a graphomate extension component changes the cursor to a "hand" icon to show that a click interaction is possible. This article shows how to suppress that behavior to show the standard cursor instead of the hand icon on mouse over.

Step-by-Step-Guide

Insert the following code in the “custom.css” of your application and replace the <NameChart> with the name of your component.

#<NameChart>_control {
	cursor: default !important;
}

  • No labels