Effacer les filtres
Effacer les filtres

color of "ginput"

19 vues (au cours des 30 derniers jours)
Rahma Yeni
Rahma Yeni le 17 Avr 2012
Hello.. ^^ is possible to change the cursor's color of "ginput" when i implement it..?? cause the color is transparent, sometimes i can't see where is my cursor.. :) thank you...

Réponse acceptée

Jakob Sørensen
Jakob Sørensen le 17 Avr 2012
You can change the looks by changing cursor type...
set(gcf, 'pointer', 'crosshair');
And then you can change it back by:
set(gcf, 'pointer', 'arrow');
There is also other options than crosshair, but you can probably look that up yourself.
  2 commentaires
Rahma Yeni
Rahma Yeni le 17 Avr 2012
Thank you Jakob.. ^^
but, it's not change when i use "ginput"..
i hope it can change when i put some point to my axes.. how can make it like that..?? Thank you...
Jakob Sørensen
Jakob Sørensen le 18 Avr 2012
You could use 'ButtonDownFcn' instead of 'ginput'. It's a bit more work, but makes it more customizable.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 17 Avr 2012
Pointers are handled by the operating system, and are one-bit (black and white) with a 1 bit mask (transparent or not). It is not possible to change the pointer color.
  1 commentaire
Rahma Yeni
Rahma Yeni le 18 Avr 2012
Thank you for your explanation Walter.. ^^

Connectez-vous pour commenter.

Catégories

En savoir plus sur Visual Exploration dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by