I am using this sample for drawing tools: ArcGIS API for JavaScript Sandbox
Do you know if there is any way to modify the background color and the text color of the tool tip window (see snapshot below).
Solved! Go to Solution.
Laurent,
Sure just add this css rule:
.map .esriMapTooltip {
background-color: #ff0000;
color: white;
}
Laurent,
Sure just add this css rule:
.map .esriMapTooltip {
background-color: #ff0000;
color: white;
}
Hi Robert,
Thanks.
I just tried with ESRI API 3.19 and it does not work (seems the related css version is missing esriMapTooltip).
But it does work with API 3.22
So, thanks a lot !