@codetonight,
You can update the chart title dynamically to reflect the name of the selected datapoint upon clicking. Please find the code-snippet below:
click: function(e) {
e.chart.title.set("text", e.dataPoint.name);
}
Please take a look a this JSFiddle for an example of the same.

—
Vishwas R
Team CanvasJS