-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
805 lines (692 loc) · 23.7 KB
/
script.js
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
$(function () {
// Margin amounts
var margin = {
top: 20,
right: 80,
bottom: 70,
left: 50
};
// Bar size
var barWidth = 5;
// Canvas size
var canvasWidth = 1000;
var canvasHeight = 400;
// Colors for charts
var blueLight = '#c6dbef';
var blueDark = '#084594';
var greenLight = '#c7e9c0';
var greenDark = '#005a32';
var redLight = '#fee0d2';
var redDark = '#cb181d';
// Tooltip
var tooltip = d3.select('body')
.append('div')
.attr('class', 'tooltip');
/**
* Loads the data file.
*/
function loadTSV() {
d3.tsv('data.tsv', function (d) {
var mileage = +d['Mileage'];
var gallonsFilled = +d['Gallons Filled'];
var pricePerGallon = +d['Price Per Gallon'];
var milesRemaining = +d['Miles Remaining'];
var mpg = +d['MPG'];
var pricePerMile = pricePerGallon / mpg;
var gasUtilization = mileage / (mileage + milesRemaining);
return {
date: d['Date'],
mileage: mileage,
milesRemaining: milesRemaining,
gallonsFilled: gallonsFilled,
pricePerGallon: pricePerGallon,
mpg: mpg,
pricePerMile: pricePerMile,
gasUtilization: gasUtilization
};
}, function (error, data) {
if (error) {
console.log('Read error');
return;
}
/**
* Adds an attribute to each data value for the number of days since
* the previous fillup date.
*
* @param data The data for the chart(s).
*/
function calculateDaysSinceFillup(data) {
var DEFAULT_VAL = 30;
var dayConversionFactor = (1000 * 60 * 60 * 24);
for (i = 1; i < data.length; i++) {
if ((i - 1) == 0) {
data[i - 1]['daysSinceFillup'] = DEFAULT_VAL;
}
var prev = data[i - 1];
var curr = data[i];
var prevDate = new Date(prev.date);
var currDate = new Date(curr.date);
var daysSince = (currDate - prevDate) / dayConversionFactor;
data[i]['daysSinceFillup'] = daysSince;
}
}
calculateDaysSinceFillup(data);
/**
* Loads the mileage and miles remaining line chart.
*
* @param data The data for the chart.
*/
function loadMileageLineChart(data) {
var svg = d3.select('#mileage-canvas')
.attr('width', canvasWidth)
.attr('height', canvasHeight);
// Indices for ordinal colors
var milesColorIndex = 0;
var remainingMilesColorIndex = 1;
var percent = 0.2;
// Scales
var timeScale = d3.scalePoint()
.domain(data.map(function (d) {
return d.date;
}))
.range([margin.left, canvasWidth - margin.right])
.padding(0.5);
var milesScale = d3.scaleLinear()
.domain([0, Math.floor((d3.max(data.map(function (d) {
return d.mileage + d.milesRemaining;
}))) * (1.0 + percent))])
.range([canvasHeight - margin.bottom, margin.top]);
// Color scale
var colorScale = d3.scaleOrdinal(d3.schemeCategory10);
// Mileage line
var mileageLine = d3.line()
.x(function (d) {
return timeScale(d.date);
})
.y(function (d) {
return milesScale(d.mileage);
});
// Remaining miles line
var remainingMilesLine = d3.line()
.x(function (d) {
return timeScale(d.date);
})
.y(function (d) {
return milesScale(d.milesRemaining + d.mileage);
});
// D3 axes
var xAxis = d3.axisBottom()
.scale(timeScale)
.tickFormat(getDateAxisEntriesByInterval);
var yAxis = d3.axisLeft()
.scale(milesScale);
// Data line groups
var mileageLineGroup = svg.append('g')
.classed('miles-line', true)
mileageLineGroup.append('path')
.attr('class', 'line')
.attr('stroke', function (d) {
return colorScale(milesColorIndex);
})
.attr('fill', 'none');
var remainingMilesLineGroup = svg.append('g')
.classed('remain-line', true)
remainingMilesLineGroup.append('path')
.attr('class', 'line')
.attr('stroke', function (d) {
return colorScale(remainingMilesColorIndex);
})
.attr('fill', 'none');
// Data lines
mileageLineGroup.select('.line')
.datum(data)
.attr('d', mileageLine);
remainingMilesLineGroup.select('.line')
.datum(data)
.attr('d', remainingMilesLine);
// Axes
svg.append('g')
.attr('class', 'x-axis')
.attr('transform', 'translate(0,' + (canvasHeight - margin.bottom) + ')');
svg.append('g')
.attr('class', 'y-axis')
.attr('transform', 'translate(' + margin.left + ',0)');
svg.select('.x-axis')
.call(xAxis)
.selectAll('text')
.attr('x', -32)
.attr('y', 5)
.attr('transform', 'rotate(-45, 0, 0)');
svg.select('.y-axis')
.call(yAxis);
// Chart labels
svg
.append('text')
.classed('label', true)
.attr('x', canvasWidth / 2)
.attr('y', canvasHeight - margin.top / 2 + 5)
.attr('text-anchor', 'middle')
.text('Date');
svg.append('text')
.classed('label', true)
.attr('x', -canvasHeight / 2)
.attr('y', 15)
.attr('text-anchor', 'middle')
.attr('transform', 'rotate(-90, 0, 0)')
.text('Miles Driven');
svg.append('g')
.classed('dots', true);
// Add dots
var dataDots = svg.select('.dots')
.selectAll('.dot')
.data(data)
.enter()
.append('g')
.classed('dot', true);
var circleRadius = 3;
dataDots.append('circle')
.attr('r', circleRadius)
.attr('cx', function (d) {
return timeScale(d.date);
})
.attr('cy', function (d) {
return milesScale(d.mileage);
})
.attr('opacity', 1)
.attr('fill', function (d) {
return colorScale(milesColorIndex);
})
.on('mouseover', function (d) {
tooltipMouseOver(d, tooltipTextMileageLine(d));
})
.on('mousemove', function (d) {
tooltipMouseMove(d, tooltipTextMileageLine(d));
})
.on('mouseout', function (d) {
tooltipMouseOut(d);
});
dataDots.append('circle')
.attr('r', circleRadius)
.attr('cx', function (d) {
return timeScale(d.date);
})
.attr('cy', function (d) {
return milesScale(d.milesRemaining + d.mileage);
})
.attr('opacity', 1)
.attr('fill', function (d) {
return colorScale(remainingMilesColorIndex);
})
.on('mouseover', function (d) {
tooltipMouseOver(d, tooltipTextRemainingMilesLine(d));
})
.on('mousemove', function (d) {
tooltipMouseMove(d, tooltipTextRemainingMilesLine(d));
})
.on('mouseout', function (d) {
tooltipMouseOut(d);
});
// Legend items
svg.append('text')
.classed('legend-item', true)
.datum(data[data.length - 1])
.attr('transform', function (d) {
return 'translate(' + timeScale(d.date) + ',' + milesScale(d.mileage) + ')';
})
.attr('x', 10)
.attr('y', 0)
.attr('alignment-baseline', 'middle')
.text('Mileage');
svg.append('text')
.classed('legend-item', true)
.datum(data[data.length - 1])
.attr('transform', function (d) {
return 'translate(' + timeScale(d.date) + ',' + milesScale(d.milesRemaining + d.mileage) + ')';
})
.attr('x', 10)
.attr('y', 0)
.attr('alignment-baseline', 'middle')
.text('Potential Miles');
}
/**
* Loads the average mileage chart.
*
* @param data The data for the chart.
*/
function loadAverageMPGChart(data) {
var svg = d3.select('#avg-canvas')
.attr('width', canvasWidth)
.attr('height', canvasHeight);
var percent = 0.025;
// Axes scales
var timeScale = d3.scalePoint()
.domain(data.map(function (d) {
return d.date;
}))
.range([margin.left, canvasWidth - margin.right])
.padding(0.5);
var avgMPGScale = d3.scaleLinear()
.domain([(Math.floor(d3.min(data.map(function (d) {
return d.mpg;
}))) * (1.0 - percent)), (Math.floor(d3.max(data.map(function (d) {
return d.mpg;
}))) * (1.0 + percent))])
.range([canvasHeight - margin.bottom, margin.top]);
// Interpolated color scale
var colorScale = function (d) {
return d3.scaleLinear()
.domain([((d3.max(data.map(function (d) {
return d.mpg;
})))), ((d3.min(data.map(function (d) {
return d.mpg;
}))))])
.range([blueLight, blueDark])
.interpolate(d3.interpolateRgb)(d);
}
// D3 axes
var xAxis = d3.axisBottom()
.scale(timeScale)
.tickFormat(getDateAxisEntriesByInterval);
var yAxis = d3.axisLeft()
.scale(avgMPGScale);
// Axes
svg.append('g')
.attr('class', 'x-axis')
.attr('transform', 'translate(0,' + (canvasHeight - margin.bottom) + ')');
svg.append('g')
.attr('class', 'y-axis')
.attr('transform', 'translate(' + margin.left + ',0)');
svg.select('.x-axis')
.call(xAxis)
.selectAll('text')
.attr('x', -32)
.attr('y', 5)
.attr('transform', 'rotate(-45, 0, 0)');
svg.select('.y-axis')
.call(yAxis);
// Chart labels
svg
.append('text')
.classed('label', true)
.attr('x', canvasWidth / 2)
.attr('y', canvasHeight - margin.top / 2 + 5)
.attr('text-anchor', 'middle')
.text('Date');
svg.append('text')
.classed('label', true)
.attr('x', -canvasHeight / 2)
.attr('y', 10)
.attr('text-anchor', 'middle')
.attr('transform', 'rotate(-90, 0, 0)')
.text('Miles Per Gallon');
// Add bars
var barGroup = svg
.append('g')
.classed('bars', true);
var bars = barGroup.selectAll('.bar')
.data(data)
.enter()
.append('g')
.classed('bar', true);
bars.append('rect')
.attr('x', function (d) {
return timeScale(d.date) - (barWidth / 2);
})
.attr('y', function (d) {
return avgMPGScale(d.mpg);
})
.attr('height', function (d) {
return canvasHeight - avgMPGScale(d.mpg) - margin.bottom;
})
.attr('width', function (d) {
return barWidth;
})
.attr('fill', function (d) {
return colorScale(d.mpg);
})
.on('mouseover', function (d) {
tooltipMouseOver(d, tooltipTextAvgMPG(d));
})
.on('mousemove', function (d) {
tooltipMouseMove(d, tooltipTextAvgMPG(d));
})
.on('mouseout', function (d) {
tooltipMouseOut(d);
});
// Legend
var scaleWidth = 20;
var scaleHeight = 100;
generateGradientLegend(svg, 'average-mpg-gradient-scale', scaleWidth, scaleHeight, avgMPGScale.domain(), [(canvasHeight - margin.top) / 2 + scaleHeight / 2 - 1, (canvasHeight - margin.top) / 2 - scaleHeight / 2], [blueLight, blueDark]);
}
/**
* Loads the price per mile chart.
*
* @param data The data for the chart.
*/
function loadPricePerMileChart(data) {
var svg = d3.select('#price-mile-canvas')
.attr('width', canvasWidth)
.attr('height', canvasHeight);
var percent = 0.3;
// Axes scales
var timeScale = d3.scalePoint()
.domain(data.map(function (d) {
return d.date;
}))
.range([margin.left, canvasWidth - margin.right])
.padding(0.5);
var priceMileScale = d3.scaleLinear()
.domain([(Math.floor(d3.min(data.map(function (d) {
return d.pricePerMile;
})))), ((d3.max(data.map(function (d) {
return d.pricePerMile;
}))) * (1.0 + percent))])
.range([canvasHeight - margin.bottom, margin.top]);
// Interpolated color scale
var colorScale = function (d) {
return d3.scaleLinear()
.domain([((d3.min(data.map(function (d) {
return d.pricePerMile;
})))), ((d3.max(data.map(function (d) {
return d.pricePerMile;
}))))])
.range([greenLight, greenDark])
.interpolate(d3.interpolateRgb)(d);
}
// D3 axes
var xAxis = d3.axisBottom()
.scale(timeScale)
.tickFormat(getDateAxisEntriesByInterval);
var yAxis = d3.axisLeft()
.scale(priceMileScale);
// Axes
svg.append('g')
.attr('class', 'x-axis')
.attr('transform', 'translate(0,' + (canvasHeight - margin.bottom) + ')');
svg.append('g')
.attr('class', 'y-axis')
.attr('transform', 'translate(' + margin.left + ',0)');
svg.select('.x-axis')
.call(xAxis)
.selectAll('text')
.attr('x', -32)
.attr('y', 5)
.attr('transform', 'rotate(-45, 0, 0)');
svg.select('.y-axis')
.call(yAxis);
// Chart labels
svg
.append('text')
.classed('label', true)
.attr('x', canvasWidth / 2)
.attr('y', canvasHeight - margin.top / 2 + 5)
.attr('text-anchor', 'middle')
.text('Date');
svg.append('text')
.classed('label', true)
.attr('x', -canvasHeight / 2)
.attr('y', 10)
.attr('text-anchor', 'middle')
.attr('transform', 'rotate(-90, 0, 0)')
.text('Price Per Mile');
// Add bars
var barGroup = svg
.append('g')
.classed('bars', true);
var bars = barGroup.selectAll('.bar')
.data(data)
.enter()
.append('g')
.classed('bar', true);
bars.append('rect')
.attr('x', function (d, i) {
return timeScale(d.date) - (barWidth / 2);
})
.attr('y', function (d) {
return priceMileScale(d.pricePerMile);
})
.attr('height', function (d) {
return canvasHeight - priceMileScale(d.pricePerMile) - margin.bottom;
})
.attr('width', function (d) {
return barWidth;
})
.attr('fill', function (d, i) {
return colorScale(d.pricePerMile);
})
.on('mouseover', function (d) {
tooltipMouseOver(d, tooltipTextPriceMile(d));
})
.on('mousemove', function (d) {
tooltipMouseMove(d, tooltipTextPriceMile(d));
})
.on('mouseout', function (d) {
tooltipMouseOut(d);
});
// Legend
var scaleWidth = 20;
var scaleHeight = 100;
generateGradientLegend(svg, 'price-per-mile-gradient-scale', scaleWidth, scaleHeight, priceMileScale.domain(), [(canvasHeight - margin.top) / 2 + scaleHeight / 2 - 1, (canvasHeight - margin.top) / 2 - scaleHeight / 2], [greenDark, greenLight]);
}
/**
* Loads the fillup frequency chart.
*
* @param data The data for the chart.
*/
function loadFillupFrequencyChart(data) {
var thisCanvasHeight = canvasHeight / 2;
var svg = d3.select('#fillup-freq-canvas')
.attr('width', canvasWidth)
.attr('height', thisCanvasHeight);
// Indices for ordinal colors
var milesColorIndex = 0;
var percent = 0.2;
// Scales
var timeScale = d3.scaleTime()
.domain([d3.timeMonth.offset(new Date(data[0].date), -1), d3.timeMonth.offset(new Date(data[data.length - 1].date), 1)])
.rangeRound([margin.left, canvasWidth - margin.right]);
var daysFreqScale = d3.scaleLinear()
.domain([((d3.min(data.map(function (d) {
return d.daysSinceFillup;
})))), ((d3.max(data.map(function (d) {
return d.daysSinceFillup;
}))))])
.range([redDark, redLight]);
var colorScale = function (d) {
return daysFreqScale
.interpolate(d3.interpolateRgb)(d);
}
// D3 axes
var xAxis = d3.axisBottom()
.scale(timeScale)
.tickFormat(d3.timeFormat('%Y/%m'));
// Axes
svg.append('g')
.attr('class', 'x-axis')
.attr('transform', 'translate(0,' + (thisCanvasHeight - margin.bottom) + ')');
svg.append('g')
.attr('class', 'y-axis')
.attr('transform', 'translate(' + margin.left + ',0)');
svg.select('.x-axis')
.call(xAxis)
.selectAll('text')
.attr('x', -25)
.attr('y', 5)
.attr('transform', 'rotate(-45, 0, 0)');
// Chart labels
svg
.append('text')
.classed('label', true)
.attr('x', canvasWidth / 2)
.attr('y', thisCanvasHeight - margin.top / 2 + 5)
.attr('text-anchor', 'middle')
.text('Date');
svg.append('g')
.classed('dots', true);
// Add dots
var dataDots = svg.select('.dots')
.selectAll('.dot')
.data(data)
.enter()
.append('g')
.classed('dot', true);
var circleRadius = 3;
dataDots.append('circle')
.attr('r', circleRadius)
.attr('cx', function (d) {
return timeScale(new Date(d.date));
})
.attr('cy', function (d) {
return ((thisCanvasHeight - margin.top - (margin.bottom / 2)) / 2);
})
.attr('opacity', 1)
.attr('fill', function (d) {
return colorScale(d.daysSinceFillup);
})
.on('mouseover', function (d) {
tooltipMouseOver(d, tooltipTextFillupFreq(d));
})
.on('mousemove', function (d) {
tooltipMouseMove(d, tooltipTextFillupFreq(d));
})
.on('mouseout', function (d) {
tooltipMouseOut(d);
});
// Legend
var scaleWidth = 20;
var scaleHeight = 75;
generateGradientLegend(svg, 'fillup-freq-gradient-scale', scaleWidth, scaleHeight, daysFreqScale.domain(), [((thisCanvasHeight - margin.top - (margin.bottom / 2)) / 2) + scaleHeight / 2 - 1,
((thisCanvasHeight - margin.top - (margin.bottom / 2)) / 2) - scaleHeight / 2
], [redLight, redDark]);
}
/**
* Generates a gradient legend scale for the specified chart.
*
* @param svg The chart to draw on.
* @param id The unique ID for the gradient.
* @param scaleWidth The width of the gradient rectangle.
* @param scaleHeight The height of the gradient rectangle.
* @param vertScaleDomain The domain for the legend scale.
* @param vertRange The range of coordinates for the scale.
* @param colorRange The start and stop points for the gradient.
*/
function generateGradientLegend(svg, id, scaleWidth, scaleHeight, vertScaleDomain, vertRange, colorRange) {
var defs = svg.append('defs');
var gradient = defs.append('linearGradient')
.attr('id', id);
var legendScale = d3.scaleLinear()
.domain(vertScaleDomain)
.range(vertRange);
var legendAxis = d3.axisLeft(legendScale)
.tickFormat(function (d, i) {
return d;
})
.ticks(6);
gradient
.attr("x1", "0%")
.attr("y1", "0%")
.attr("x2", "0%")
.attr("y2", "100%");
gradient.append('stop')
.attr('offset', '0%')
.attr('stop-opacity', 1.0)
.attr('stop-color', colorRange[0]);
gradient.append('stop')
.attr('offset', '100%')
.attr('stop-opacity', 1.0)
.attr('stop-color', colorRange[1]);
svg.append('rect')
.attr('class', 'legend')
.attr('x', Math.floor(canvasWidth - (margin.right / 2)))
.attr('y', vertRange[1])
.attr('width', scaleWidth)
.attr('height', scaleHeight)
.attr('stroke', 'black')
.attr('stroke-width', 0)
.style('fill', 'url(#' + id + ')');
svg
.append('g')
.classed('legend-axis', true)
.attr('transform', 'translate(' + Math.floor(canvasWidth - (margin.right / 2)) + ',0)')
.attr('stroke-width', 1)
.call(legendAxis);
}
function tooltipTextMileageLine(d) {
return '[' + getDateFormat(d.date) + ']: ' + d.mileage;
}
function tooltipTextRemainingMilesLine(d) {
return '[' + getDateFormat(d.date) + ']: ' + d.mileage + ' + ' + d.milesRemaining + ' = ' + (d.milesRemaining + d.mileage);
}
function tooltipTextAvgMPG(d) {
return '[' + getDateFormat(d.date) + ']: ' + d.mpg + ' mpg';
}
function tooltipTextPriceMile(d) {
return '[' + getDateFormat(d.date) + ']: ' + Number(d.pricePerMile)
.toFixed(3) + ' $/mile';
}
function tooltipTextFillupFreq(d) {
return '[' + getDateFormat(d.date) + ']: ' + d.daysSinceFillup.toFixed(0) + ' days';
}
function getDateFormat(d) {
return d3.utcFormat('%Y/%m/%d')(new Date(d))
}
/**
* Shared function to return date entries for the x-axis on a specific interval.
*
* @param d The date object to parse and format.
* @param i The index of the current date object in the date series.
*/
function getDateAxisEntriesByInterval(d, i) {
if (i % 3 == 0) {
return getDateFormat(d);
}
return '';
}
/**
* Updates the tooltip when the mouse enters over an item.
*
* @param d The data item being hovered on.
* @param text The text to display in the tooltip.
*/
function tooltipMouseOver(d, text) {
tooltip
.style('top', (d3.event.pageY - 20) + "px")
.style('left', (d3.event.pageX) + "px")
.text(text);
tooltip.transition()
.duration(200)
.style('opacity', 1)
}
/**
* Updates the tooltip when the mouse moves on an item.
*
* @param d The data item being hovered on.
* @param text The text to display in the tooltip.
*/
function tooltipMouseMove(d, text) {
tooltip
.style('top', (d3.event.pageY - 20) + "px")
.style('left', (d3.event.pageX) + "px")
.text(text);
}
/**
* Updates the tooltip when the mouse exits an item.
*
* @param d The data item being exited.
*/
function tooltipMouseOut(d) {
tooltip
.transition()
.duration(200)
.style('opacity', 0)
}
// Load all charts
loadMileageLineChart(data);
loadAverageMPGChart(data);
loadPricePerMileChart(data);
loadFillupFrequencyChart(data);
});
}
// Load data
loadTSV();
});