anychart.onDocumentReady(function () {
var chart = anychart.pyramid([
{x: "Physical", value: 115},
{x: "Data Link", value: 129},
{x: "Network", value: 165},
{x: "Transport", value: 125},
{x: "Session", value: 123},
{x: "Presentation", value: 135},
{x: "Application", value: 230}
var point = chart.getPoint(1);
var hoverState = point.hovered();
chart.title("Hover state is " + hoverState);
chart.container("container");