anychart.onDocumentReady(function () {
{x: "1995", value: 0.10},
{x: "1996", value: 0.10},
{x: "1997", value: 0.12},
{x: "1998", value: 0.13},
{x: "1999", value: 0.15},
{x: "2000", value: 0.15},
{x: "2001", value: 0.15},
{x: "2002", value: 0.19},
var chart = anychart.verticalLine();
var series = chart.stepLine(data);
series.stepDirection("forward");
chart.title("Vertical Step Line Chart");
chart.container("container");