Edit in JSFiddle

var financialChart = new wijmo.chart.finance.FinancialChart('#financialChart', {
  itemsSource: sample.stocks(),
  bindingX: 'date',
  series: [
    {
      binding: 'high,low,open,close',
      style: {
        stroke: 'red'
      },
      altStyle: {
        stroke: 'blue'
      }
    }
  ],
  chartType: 'PointAndFigure',
  options: {
    pointAndFigure: {
      scaling: 'Fixed',
      boxSize: 10
    }
  }
});
<div class="container">

  <div id="financialChart"></div>

</div>