I'm having problems with the default display when I move the pointer over a bar chart to display counts. I created a few the default display text is green with a white background. I'm using a different theme and created a few charts and the default text is green but the background color is a dark gray and very hard to see. see attachment.
thanks
Chet,
Changing the tooltips background color would involve adjusting the launchpad themes dojo-override.css .claro .dijitTooltipContainer rule (line 2). You can find that file in this location:
[install dir]\server\apps\[app#]\themes\LaunchpadTheme\styles\default\css\dojo-override.css
.claro .dijitTooltipContainer {
background-color: #333;
background-image: none;
font-size: 12px;
padding: 5px 10px;
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: none;
box-shadow: none;
opacity: 0.8;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);
}