anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.column([
series.excludePoint([0, 2, 4, 6, 9]);
var points = series.getExcludedPoints();
chart.column([points[0].get("value"), points[1].get("value"), points[2].get("value"), points[3].get("value"), points[4].get("value")]);
chart.title("Get and use the excluded points");
chart.container("container");