anychart.onDocumentReady(function () {
var chart = anychart.area();
var series = chart.stepArea([
{x: "January", value: 125},
{x: "February", value: 132},
{x: "March", value: 141},
{x: "April", value: 158},
series.hoverStroke("#F44336 3");
var hoverStroke = series.hoverStroke();
chart.title({text: "Get and use hover stroke", fontColor: hoverStroke.color});
chart.container("container");