Hi,
how can I customize tooltip's background color of gantt chart?
this is the toolbar code of gantt:
Thanks.
|
<style>
.e-gantt-tooltip.e-tooltip-wrap,
.e-tooltip-wrap .e-tip-content {
background-color: green;
}
</style>
|
Hello syncfusion team
All tooltips change correctly but toolbar tooltip doesn't change its background-color. In this case the tooltip must change to red color, that change doesn't apply in background-color of toolbar tooltip.
Toolbar tooltip must be red
thanks for your help!
|
<ejs-tooltip id="tooltip" cssClass='custom-tip' target='#ganttDefault_Gantt_Toolbar [title]'>
<ejs-gantt id="ganttDefault" height="430px" [dataSource]="data" [taskFields]="taskSettings"
[allowSelection]="true" [labelSettings]="labelSettings" height="400px"
[projectStartDate]="projectStartDate"
[projectEndDate]="projectEndDate" [toolbar]="toolbar" [highlightWeekends]="true">
</ejs-gantt>
</ejs-tooltip>
|
|
<style>
.e-gantt-tooltip.e-tooltip-wrap,
.e-tooltip-wrap .e-tip-content {
background-color: red;
}
.custom-tip.e-tooltip-wrap .e-arrow-tip.e-tip-top {
display: none;
}
</style>
|