Flexmonster - Charts with secondary Y axis

by Ian Sadovy

HTML

<script src="https://s3.amazonaws.com/flexmonster/2.2/flexmonster.js"></script>
<div id="pivot-content"></div>

JavaScript

flexmonster.embedPivotComponent("https://s3.amazonaws.com/flexmonster/2.2/", "pivot-content", "100%", "600", {
  licenseKey: "Z53G-1T1WC3-1V1M-0L12-2M0A-1233-1I0Y-2Y2Q-1903-322S-0T2C-1I",
  filename: "https://www.flexmonster.com/download/data.csv",
  viewType: "charts",
  chartType: "bar_line",
  rows: [{
    uniqueName: "Country"
  }],
  columns: [{
    uniqueName: "[Measures]"
  }],
  measures: [{
    uniqueName: "Price2",
    caption: "Sum of Price",
    calculated: true,
    formula: "sum('Price')"
  }, {
    uniqueName: "Price",
    aggregation: "percent"
  }],
  configuratorActive: false
}, true);