BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[JS]
$("#container").ejChart(
{
toolTipInitialize: "tooltipRendering"
});
function tooltipRendering(sender) { //toolTipInitialize event triggered
if (sender.model.series[0].type == "bar") {
sender.model.series[0].tooltip.fill = sender.model.series[0].fill;
sender.model.series[0].tooltip.font = {};
sender.model.series[0].tooltip.font.color = "white";
sender.model.series[0].tooltip.border.color = "transparent";
}
} |