10.2.0 to 10.3.0

Smart Zoom

Uncomment or add the following line to your template:

config.addOns.continuousZoom.enabled = true; // @@ CONTINUOUS_ZOOM

Configure systemMessages in defaultConfiguration.js under config.systemMessages.smartZoomEnabled:

smartZoomEnabled: {
  message: "Smart Zoom is enabled. Periodicity will adjust with zoom level.",
  type: "info",
  displayTime: 3
},

Status Loader

To prevent the event loading message, add showLoader: false to the parameter object of CIQ.ChartEngine#addSeries:

stxx.addSeries("IBM", { color: "white", showLoader: false });

Important: When using CIQ.ChartEngine#addEvent in version 10.3.0, you must set showLoader: false:

stxx.addEvent("Trades", {  showLoader: false, ... });