anychart.onDocumentReady(function () {
var chart = anychart.line();
var series = chart.jumpLine([
{x: "January", value: 5},
{x: "February", value: 6},
series.hoverStroke("#26A69A", 2);
var hoverStroke = series.hoverStroke();
chart.title({text: "Get and use hover stroke", fontColor: hoverStroke.color});
chart.container("container");