morris.js/lib/morris.line.coffee

368 lines
12 KiB
CoffeeScript
Raw Normal View History

class Morris.Line extends Morris.Grid
2012-09-01 12:04:06 +02:00
# Initialise the graph.
#
constructor: (options) ->
return new Morris.Line(options) unless (@ instanceof Morris.Line)
super(options)
2012-09-01 12:04:06 +02:00
init: ->
2012-09-01 12:04:06 +02:00
# Some instance variables for later
@pointGrow = Raphael.animation r: @options.pointSize + 3, 25, 'linear'
@pointShrink = Raphael.animation r: @options.pointSize, 25, 'linear'
# column hilight events
@prevHilight = null
@el.mousemove (evt) =>
@updateHilight evt.pageX
if @options.hideHover
@el.mouseout (evt) =>
@hilight null
touchHandler = (evt) =>
touch = evt.originalEvent.touches[0] or evt.originalEvent.changedTouches[0]
@updateHilight touch.pageX
return touch
@el.bind 'touchstart', touchHandler
@el.bind 'touchmove', touchHandler
@el.bind 'touchend', touchHandler
# Default configuration
#
defaults:
lineWidth: 3
pointSize: 4
lineColors: [
'#0b62a4'
'#7A92A3'
'#4da74d'
'#afd8f8'
'#edc240'
'#cb4b4b'
'#9440ed'
]
2012-10-13 11:16:56 +02:00
pointWidths: [1]
pointStrokeColors: ['#ffffff']
pointFillColors: []
2012-09-01 12:04:06 +02:00
hoverPaddingX: 10
hoverPaddingY: 5
hoverMargin: 10
hoverFillColor: '#fff'
hoverBorderColor: '#ccc'
hoverBorderWidth: 2
hoverOpacity: 0.95
hoverLabelColor: '#444'
hoverFontSize: 12
smooth: true
hideHover: false
xLabels: 'auto'
xLabelFormat: null
# Do any size-related calculations
#
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
calc: ->
2012-10-28 19:55:37 +01:00
@calcPoints()
@generatePaths()
@calcHoverMargins()
# calculate series data point coordinates
#
# @private
calcPoints: ->
2012-10-23 10:15:21 +02:00
for row in @data
row._x = @transX(row.x)
row._y = for y in row.y
if y is null
null
else
@transY(y)
2012-10-28 19:55:37 +01:00
# calculate hover margins
#
# @private
calcHoverMargins: ->
2012-10-23 10:15:21 +02:00
@hoverMargins = $.map @data.slice(1), (r, i) => (r._x + @data[i]._x) / 2
2012-10-28 19:55:37 +01:00
# generate paths for series lines
#
# @private
generatePaths: ->
@paths = for i in [0...@options.ykeys.length]
smooth = @options.smooth is true or @options.ykeys[i] in @options.smooth
coords = ({x: r._x, y: r._y[i]} for r in @data when r._y[i] isnt null)
if coords.length > 1
@createPath coords, smooth
else
null
# Draws the line chart.
2012-09-01 12:04:06 +02:00
#
draw: ->
@drawXAxis()
2012-09-01 12:04:06 +02:00
@drawSeries()
@drawHover()
2012-10-23 10:15:21 +02:00
@hilight(if @options.hideHover then null else @data.length - 1)
2012-09-01 12:04:06 +02:00
# draw the x-axis labels
2012-09-01 12:04:06 +02:00
#
2012-09-16 00:05:48 +02:00
# @private
drawXAxis: ->
# draw x axis labels
ypos = @bottom + @options.gridTextSize * 1.25
2012-09-01 12:04:06 +02:00
xLabelMargin = 50 # make this an option?
prevLabelMargin = null
drawLabel = (labelText, xpos) =>
label = @r.text(@transX(xpos), ypos, labelText)
.attr('font-size', @options.gridTextSize)
.attr('fill', @options.gridTextColor)
labelBox = label.getBBox()
# ensure a minimum of `xLabelMargin` pixels between labels, and ensure
# labels don't overflow the container
2012-10-28 21:30:48 +01:00
if (prevLabelMargin is null or prevLabelMargin >= labelBox.x + labelBox.width) and
2012-09-01 12:04:06 +02:00
labelBox.x >= 0 and (labelBox.x + labelBox.width) < @el.width()
2012-10-28 21:30:48 +01:00
prevLabelMargin = labelBox.x - xLabelMargin
2012-09-01 12:04:06 +02:00
else
label.remove()
if @options.parseTime
2012-10-23 10:15:21 +02:00
if @data.length == 1 and @options.xLabels == 'auto'
2012-09-01 12:04:06 +02:00
# where there's only one value in the series, we can't make a
# sensible guess for an x labelling scheme, so just use the original
# column label
2012-10-28 21:30:48 +01:00
labels = [[@data[0].label, @data[0].x]]
2012-09-01 12:04:06 +02:00
else
2012-10-28 21:30:48 +01:00
labels = Morris.labelSeries(@xmin, @xmax, @width, @options.xLabels, @options.xLabelFormat)
2012-09-01 12:04:06 +02:00
else
2012-10-28 21:30:48 +01:00
labels = ([row.label, row.x] for row in @data)
labels.reverse()
for l in labels
drawLabel(l[0], l[1])
2012-09-01 12:04:06 +02:00
# draw the data series
#
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
drawSeries: ->
2012-10-23 10:15:21 +02:00
for i in [@options.ykeys.length-1..0]
2012-10-28 19:55:37 +01:00
path = @paths[i]
if path isnt null
2012-09-01 12:04:06 +02:00
@r.path(path)
.attr('stroke', @colorForSeries(i))
2012-09-01 12:04:06 +02:00
.attr('stroke-width', @options.lineWidth)
2012-10-23 10:15:21 +02:00
@seriesPoints = ([] for i in [0...@options.ykeys.length])
for i in [@options.ykeys.length-1..0]
for row in @data
if row._y[i] == null
2012-09-01 12:04:06 +02:00
circle = null
else
2012-10-23 10:15:21 +02:00
circle = @r.circle(row._x, row._y[i], @options.pointSize)
2012-10-09 19:06:06 +02:00
.attr('fill', @pointFillColorForSeries(i) || @colorForSeries(i))
.attr('stroke-width', @strokeWidthForSeries(i))
.attr('stroke', @strokeForSeries(i))
2012-09-01 12:04:06 +02:00
@seriesPoints[i].push(circle)
# create a path for a data series
#
2012-09-16 00:05:48 +02:00
# @private
createPath: (coords, smooth) ->
2012-09-01 12:04:06 +02:00
path = ""
2012-10-21 01:29:40 +02:00
if smooth
2012-09-01 12:04:06 +02:00
grads = @gradients coords
for i in [0..coords.length-1]
c = coords[i]
if i is 0
path += "M#{c.x},#{c.y}"
else
g = grads[i]
lc = coords[i - 1]
lg = grads[i - 1]
ix = (c.x - lc.x) / 4
x1 = lc.x + ix
y1 = Math.min(@bottom, lc.y + ix * lg)
2012-09-01 12:04:06 +02:00
x2 = c.x - ix
y2 = Math.min(@bottom, c.y - ix * g)
2012-09-01 12:04:06 +02:00
path += "C#{x1},#{y1},#{x2},#{y2},#{c.x},#{c.y}"
else
path = "M" + $.map(coords, (c) -> "#{c.x},#{c.y}").join("L")
return path
# calculate a gradient at each point for a series of points
#
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
gradients: (coords) ->
$.map coords, (c, i) ->
if i is 0
(coords[1].y - c.y) / (coords[1].x - c.x)
else if i is (coords.length - 1)
(c.y - coords[i - 1].y) / (c.x - coords[i - 1].x)
else
(coords[i + 1].y - coords[i - 1].y) / (coords[i + 1].x - coords[i - 1].x)
# draw the hover tooltip
#
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
drawHover: ->
# hover labels
2012-10-23 10:15:21 +02:00
@hoverHeight = @options.hoverFontSize * 1.5 * (@options.ykeys.length + 1)
2012-09-01 12:04:06 +02:00
@hover = @r.rect(-10, -@hoverHeight / 2 - @options.hoverPaddingY, 20, @hoverHeight + @options.hoverPaddingY * 2, 10)
.attr('fill', @options.hoverFillColor)
.attr('stroke', @options.hoverBorderColor)
.attr('stroke-width', @options.hoverBorderWidth)
.attr('opacity', @options.hoverOpacity)
@xLabel = @r.text(0, (@options.hoverFontSize * 0.75) - @hoverHeight / 2, '')
.attr('fill', @options.hoverLabelColor)
.attr('font-weight', 'bold')
.attr('font-size', @options.hoverFontSize)
@hoverSet = @r.set()
@hoverSet.push(@hover)
@hoverSet.push(@xLabel)
@yLabels = []
for i in [0...@options.ykeys.length]
2012-10-28 20:50:38 +01:00
idx = if @cumulative then (@options.ykeys.length - i - 1) else i
yLabel = @r.text(0, @options.hoverFontSize * 1.5 * (idx + 1.5) - @hoverHeight / 2, '')
.attr('fill', @colorForSeries(i))
2012-09-01 12:04:06 +02:00
.attr('font-size', @options.hoverFontSize)
@yLabels.push(yLabel)
@hoverSet.push(yLabel)
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
updateHover: (index) =>
@hoverSet.show()
2012-10-23 10:15:21 +02:00
row = @data[index]
@xLabel.attr('text', row.label)
for y, i in row.y
@yLabels[i].attr('text', "#{@options.labels[i]}: #{@yLabelFormat(y)}")
2012-09-01 12:04:06 +02:00
# recalculate hover box width
maxLabelWidth = Math.max.apply null, $.map @yLabels, (l) ->
l.getBBox().width
maxLabelWidth = Math.max maxLabelWidth, @xLabel.getBBox().width
@hover.attr 'width', maxLabelWidth + @options.hoverPaddingX * 2
@hover.attr 'x', -@options.hoverPaddingX - maxLabelWidth / 2
# move to y pos
yloc = Math.min.apply null, (y for y in row._y when y is not null).concat(@top)
if yloc > @hoverHeight + @options.hoverPaddingY * 2 + @options.hoverMargin + @top
2012-09-01 12:04:06 +02:00
yloc = yloc - @hoverHeight / 2 - @options.hoverPaddingY - @options.hoverMargin
else
yloc = yloc + @hoverHeight / 2 + @options.hoverPaddingY + @options.hoverMargin
yloc = Math.max @top + @hoverHeight / 2 + @options.hoverPaddingY, yloc
yloc = Math.min @bottom - @hoverHeight / 2 - @options.hoverPaddingY, yloc
2012-10-23 10:15:21 +02:00
xloc = Math.min @right - maxLabelWidth / 2 - @options.hoverPaddingX, @data[index]._x
2012-09-01 12:04:06 +02:00
xloc = Math.max @left + maxLabelWidth / 2 + @options.hoverPaddingX, xloc
@hoverSet.attr 'transform', "t#{xloc},#{yloc}"
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
hideHover: ->
@hoverSet.hide()
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
hilight: (index) =>
if @prevHilight isnt null and @prevHilight isnt index
for i in [0..@seriesPoints.length-1]
if @seriesPoints[i][@prevHilight]
@seriesPoints[i][@prevHilight].animate @pointShrink
if index isnt null and @prevHilight isnt index
for i in [0..@seriesPoints.length-1]
if @seriesPoints[i][index]
@seriesPoints[i][index].animate @pointGrow
@updateHover index
@prevHilight = index
if index is null
@hideHover()
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
updateHilight: (x) =>
x -= @el.offset().left
2012-10-22 08:56:40 +02:00
for hoverIndex in [0...@hoverMargins.length]
break if @hoverMargins[hoverIndex] > x
@hilight hoverIndex
2012-09-01 12:04:06 +02:00
# @private
colorForSeries: (index) ->
@options.lineColors[index % @options.lineColors.length]
# @private
strokeWidthForSeries: (index) ->
@options.pointWidths[index % @options.pointWidths.length]
# @private
strokeForSeries: (index) ->
@options.pointStrokeColors[index % @options.pointStrokeColors.length]
2012-10-09 19:06:06 +02:00
# @private
pointFillColorForSeries: (index) ->
@options.pointFillColors[index % @options.pointFillColors.length]
2012-09-01 12:04:06 +02:00
# generate a series of label, timestamp pairs for x-axis labels
#
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
Morris.labelSeries = (dmin, dmax, pxwidth, specName, xLabelFormat) ->
ddensity = 200 * (dmax - dmin) / pxwidth # seconds per `margin` pixels
d0 = new Date(dmin)
spec = Morris.LABEL_SPECS[specName]
# if the spec doesn't exist, search for the closest one in the list
if spec is undefined
for name in Morris.AUTO_LABEL_ORDER
s = Morris.LABEL_SPECS[name]
if ddensity >= s.span
spec = s
break
# if we run out of options, use second-intervals
if spec is undefined
spec = Morris.LABEL_SPECS["second"]
# check if there's a user-defined formatting function
if xLabelFormat
spec = $.extend({}, spec, {fmt: xLabelFormat})
# calculate labels
d = spec.start(d0)
ret = []
while (t = d.getTime()) <= dmax
if t >= dmin
ret.push [spec.fmt(d), t]
spec.incr(d)
return ret
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
minutesSpecHelper = (interval) ->
span: interval * 60 * 1000
start: (d) -> new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours())
fmt: (d) -> "#{Morris.pad2(d.getHours())}:#{Morris.pad2(d.getMinutes())}"
incr: (d) -> d.setMinutes(d.getMinutes() + interval)
2012-09-16 00:05:48 +02:00
# @private
2012-09-01 12:04:06 +02:00
secondsSpecHelper = (interval) ->
span: interval * 1000
start: (d) -> new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), d.getMinutes())
fmt: (d) -> "#{Morris.pad2(d.getHours())}:#{Morris.pad2(d.getMinutes())}:#{Morris.pad2(d.getSeconds())}"
incr: (d) -> d.setSeconds(d.getSeconds() + interval)
Morris.LABEL_SPECS =
"year":
span: 17280000000 # 365 * 24 * 60 * 60 * 1000
start: (d) -> new Date(d.getFullYear(), 0, 1)
fmt: (d) -> "#{d.getFullYear()}"
incr: (d) -> d.setFullYear(d.getFullYear() + 1)
"month":
span: 2419200000 # 28 * 24 * 60 * 60 * 1000
start: (d) -> new Date(d.getFullYear(), d.getMonth(), 1)
fmt: (d) -> "#{d.getFullYear()}-#{Morris.pad2(d.getMonth() + 1)}"
incr: (d) -> d.setMonth(d.getMonth() + 1)
"day":
span: 86400000 # 24 * 60 * 60 * 1000
start: (d) -> new Date(d.getFullYear(), d.getMonth(), d.getDate())
fmt: (d) -> "#{d.getFullYear()}-#{Morris.pad2(d.getMonth() + 1)}-#{Morris.pad2(d.getDate())}"
incr: (d) -> d.setDate(d.getDate() + 1)
"hour": minutesSpecHelper(60)
"30min": minutesSpecHelper(30)
"15min": minutesSpecHelper(15)
"10min": minutesSpecHelper(10)
"5min": minutesSpecHelper(5)
"minute": minutesSpecHelper(1)
"30sec": secondsSpecHelper(30)
"15sec": secondsSpecHelper(15)
"10sec": secondsSpecHelper(10)
"5sec": secondsSpecHelper(5)
"second": secondsSpecHelper(1)
Morris.AUTO_LABEL_ORDER = [
"year", "month", "day", "hour",
"30min", "15min", "10min", "5min", "minute",
"30sec", "15sec", "10sec", "5sec", "second"
2012-09-16 00:05:48 +02:00
]