Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Yes, it is very much possible. I would recommend using HighStock instead as its the chart that has better functionality for timeseries kind of data. </p> <p>Here is how you do it in highstock, just set the series type of navigator to 'column'</p> <pre><code> navigator: { series: { data: ADBE, type : 'column' } }, </code></pre> <p><a href="http://jsfiddle.net/bLqL3/1/" rel="nofollow">http://jsfiddle.net/bLqL3/1/</a><br> PS: I have changed only one of the line graphs (lower) to column and left the other one as exercise ;)</p> <p>All the said the same can very much be done in highcharts too, the master detail chart there is a combination of more than one chart, the master being the same as the navigator in highstock, and detail is the main chart, so you can as well set the series type of the master to be 'column' there and you are done, fiddled @ <a href="http://jsfiddle.net/RAXa3/1/" rel="nofollow">http://jsfiddle.net/RAXa3/1/</a> </p> <pre><code> series: [{ type: 'column', name: 'USD to EUR', pointInterval: 24 * 3600 * 1000, pointStart: Date.UTC(2006, 0, 01), data: data }], </code></pre> <p>You could have explored the reputation chart scripts to dig out your solution</p> <pre><code>new Highcharts.Chart({ chart: { renderTo: "master-graph", animation: !1, reflow: !1, borderWidth: 0, marginLeft: 62, backgroundColor: null, zoomType: "x", events: { selection: function(a){ varb=a.xAxis[ 0 ], a=b.min, b=b.max, c=this.xAxis[ 0 ];c.removePlotBand("selected-area");c.addPlotBand({ id: "selected-area", from: a, to: b, color: "rgba(0, 70, 200, 0.2)" });e(this);return!1 } } }, series: [ { data: i, type: "column", color: "green" } ], plotOptions: { series: { animation: !1, lineWidth: 1, marker: { enabled: !1 }, shadow: !1, states: { hover: { lineWidth: 1 } }, enableMouseTracking: !1 }, column: { borderWidth: 0, pointPadding: 0, groupPadding: 0 } }, xAxis: { type: "datetime", min: a, max: p, maxZoom: 2592E6, plotBands: [ { id: "selected-area", from: h, to: p, color: "rgba(0, 70, 200, 0.2)" } ], title: { text: null }, labels: { formatter: function(){ returnHighcharts.dateFormat(7776E6&lt;p-a?"%b '%y": "%b %e", this.value, !1) } }, lineWidth: 0 }, yAxis: { gridLineWidth: 0, labels: { enabled: !1 }, title: { text: null }, plotLines: b(), min: j, max: m, showFirstLabel: !1, endOnTick: !1, startOnTick: !1 }, title: { text: null }, legend: { enabled: !1 }, tooltip: { formatter: function(){ return!1 } }, credits: { enabled: !1 }, exporting: { enabled: !1 } }); </code></pre> <p>AND</p> <pre><code>new Highcharts.Chart({ chart: { renderTo: "detail-graph", animation: !1, defaultSeriesType: "column" }, series: [ { name: "rep", data: g, color: "green" } ], plotOptions: { series: { animation: !1, cursor: "pointer", allowPointSelect: !0, shadow: !1, stickyTracking: !0, states: { hover: { enabled: !0, brightness: 0.5 } } }, column: { pointPadding: 0.03, groupPadding: 0, borderWidth: 0, events: { click: c } } }, xAxis: { type: "datetime", labels: { rotation: 0, formatter: function(){ returnHighcharts.dateFormat("%b %e", this.value, !1) } }, lineWidth: 0, min: f, max: d, startOnTick: !0, endOnTick: !0 }, yAxis: { gridLineWidth: 0, plotLines: b(), min: e, max: h, title: { text: "reputation per day" }, startOnTick: !1, endOnTick: !1 }, tooltip: { formatter: function(){ return'&lt;spanstyle="font-size: 10px;"&gt;'+Highcharts.dateFormat("%A, %B %e, %Y", this.point.x, !1)+'&lt;/span&gt;&lt;br/&gt;&lt;spanstyle="color:'+this.series.color+'"&gt;'+this.series.name+"&lt;/span&gt;: &lt;b&gt;"+this.point.realRep+"&lt;/b&gt;" }, style: { lineHeight: "200%", padding: 10 } }, title: { text: null }, legend: { enabled: !1 }, credits: { enabled: !1 } }); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload