anychart.onDocumentReady(function () {
var chart = anychart.line();
var series = chart.jumpLine([
{x: "January", value: 5},
{x: "February", value: 6},
series.selectStroke("#F44336");
var selectStroke = series.selectStroke();
chart.title({text: "Get and use select stroke", fontColor: selectStroke});
chart.container("container");