@elanchezhiyan,
You can use zoomText and panText attributes of culture to customize the text shown in the tooltip of zoom & pan button respectively. Please take a look at this below code snippet.
CanvasJS.addCultureInfo("custom", {
zoomText: "Custom Zoom Title",
panText: "Custom Pan Title"
});
var chart = new CanvasJS.Chart("chartContainer", {
culture: "custom",
.
.
});
Please take a look at this updated JSFiddle for complete working code.
—-
Manoj Mohan
Team CanvasJS