Lines Matching full:options
9 Hana.initChart = function(div, options) { argument
10 if (options.xAxis == undefined) {
11 options.xAxis = {
17 if (options.yAxis == undefined) {
18 options.yAxis = {
24 if (options.subtitle == undefined) {
25 options.subtitle = { text: "(smaller is better)" };
28 if (options.chart == undefined) {
29 options.chart = { zoomType: 'xy' };
32 options.plotOptions = options.plotOptions || {};
33 options.plotOptions.series = options.plotOptions.series || {};
34 options.plotOptions.series.marker = options.plotOptions.series.marker || { enabled: false };
36 if (options.title.x == undefined) {
37 options.title.x = -20; // center
40 if (options.series.stickyTracking == undefined) {
41 options.series.stickyTracking = false;
58 options.series.forEach(function(series) {
63 options.tooltip = options.tooltip || {};
64 options.tooltip.valueSuffix = options.tooltip.valueSuffix || 's';
66 if (options.legend == undefined) {
67 options.legend = {
74 div.highcharts(options);