title

Php code posted by author
created at 09 Apr 20:50

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{#nf-graph
    selected=selectedLine
    width=400
    height=150
    showFrets=true
    paddingTop=10
    paddingRight=10}}

  {{#nf-x-axis tickCount=5}}
    <text>{{format-hour-minute tick.value}}</text>
  {{/nf-x-axis}}

  {{#nf-y-axis}}
    <text>{{tick.value}}</text>
  {{/nf-y-axis}}


  {{#nf-graph-content}}
    {{nf-vertical-line x=selectedLine.hoverData.x}}
    {{nf-horizontal-line y=selectedLine.hoverData.y}}

    {{nf-line data=graphData xprop="date" yprop="low" trackingMode="snap-last" selectable=true interpolator="monotone"}}
    {{nf-line data=graphData xprop="date" yprop="medium" trackingMode="snap-last" selectable=true selected=true interpolator="monotone"}}
    {{nf-line data=graphData xprop="date" yprop="high" trackingMode="snap-last" selectable=true interpolator="monotone"}}
  {{/nf-graph-content}}

{{/nf-graph}}
869 Bytes in 3 ms with coderay