datavzrd 2.46.0

A tool to create visual HTML reports from collections of CSV/TSV tables
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
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
# Changelog

## [2.46.0]https://github.com/datavzrd/datavzrd/compare/v2.45.1...v2.46.0 (2025-01-10)


### Features

* Add new subcommand for suggesting configurations based on files ([#858]https://github.com/datavzrd/datavzrd/issues/858) ([e460e04]https://github.com/datavzrd/datavzrd/commit/e460e046a74e241d842391d56c52f95cf9fc368f)
* Add publish subcommand ([#856]https://github.com/datavzrd/datavzrd/issues/856) ([1c8facc]https://github.com/datavzrd/datavzrd/commit/1c8faccf41764aa69c3a82414f48ff0e7523a5a3)

## [2.45.1]https://github.com/datavzrd/datavzrd/compare/v2.45.0...v2.45.1 (2025-01-06)


### Bug Fixes

* Make in-memory search case-insensitive ([#852]https://github.com/datavzrd/datavzrd/issues/852) ([f49f374]https://github.com/datavzrd/datavzrd/commit/f49f374cf9acf877d0c7d9427c26d76466524503), closes [#846]https://github.com/datavzrd/datavzrd/issues/846

## [2.45.0]https://github.com/datavzrd/datavzrd/compare/v2.44.4...v2.45.0 (2024-12-10)


### Features

* Allow highlighting values by name and column using URL parameters ([e7914bf]https://github.com/datavzrd/datavzrd/commit/e7914bf5cfdd10d6923705fdffd600987ab1f969)
* Allow redirecting to specific views via URL parameter from reports index file ([#843]https://github.com/datavzrd/datavzrd/issues/843) ([33107cb]https://github.com/datavzrd/datavzrd/commit/33107cbdbd4199a5cb47f10bc0c438e41fde0bb6)

## [2.44.4]https://github.com/datavzrd/datavzrd/compare/v2.44.3...v2.44.4 (2024-11-19)


### Bug Fixes

* Multi linkout dropdown not showing properly in SVG export ([#834]https://github.com/datavzrd/datavzrd/issues/834) ([d37da07]https://github.com/datavzrd/datavzrd/commit/d37da07b01ec27b846e4212320b84d1fc6f66fcf)

## [2.44.3]https://github.com/datavzrd/datavzrd/compare/v2.44.2...v2.44.3 (2024-11-06)


### Bug Fixes

* Fix bug when columns containing single quotes ([#823]https://github.com/datavzrd/datavzrd/issues/823) ([8ab08e5]https://github.com/datavzrd/datavzrd/commit/8ab08e55746a8dceaef09d7a60dcf66bff5232ba)
* Prevent underflow and overflow bins from not showing in histogram ([#824]https://github.com/datavzrd/datavzrd/issues/824) ([d927bae]https://github.com/datavzrd/datavzrd/commit/d927bae63fc60feb1aae07b81849e4b24ad2a872)

## [2.44.2]https://github.com/datavzrd/datavzrd/compare/v2.44.1...v2.44.2 (2024-11-05)


### Bug Fixes

* Allow use of nominal for scale type ([#820]https://github.com/datavzrd/datavzrd/issues/820) ([05d2407]https://github.com/datavzrd/datavzrd/commit/05d2407aadd2a65f6bf580d874714288a684a54d)
* Fix formatting for error messages ([#814]https://github.com/datavzrd/datavzrd/issues/814) ([302b4ce]https://github.com/datavzrd/datavzrd/commit/302b4ce38cd147f635a22ed026343d220e0308d1)
* Improve behaviour for further configuring spells ([#822]https://github.com/datavzrd/datavzrd/issues/822) ([074de5d]https://github.com/datavzrd/datavzrd/commit/074de5d4da85f3117135ae905cb204fb92dd7338)

## [2.44.1]https://github.com/datavzrd/datavzrd/compare/v2.44.0...v2.44.1 (2024-10-22)


### Bug Fixes

* Fix missing data function for custom plot usage within add-columns ([#808]https://github.com/datavzrd/datavzrd/issues/808) ([9f9431d]https://github.com/datavzrd/datavzrd/commit/9f9431d0a416a165a35938c8af7cfdddce8f5268)
* Fix missing headers in exported excel file ([#805]https://github.com/datavzrd/datavzrd/issues/805) ([5071b25]https://github.com/datavzrd/datavzrd/commit/5071b2519c07aa9249631a0211315c489d4a34cb)
* Fix missing unfold option when only add-column uses display-mode detail ([#807]https://github.com/datavzrd/datavzrd/issues/807) ([df0d47a]https://github.com/datavzrd/datavzrd/commit/df0d47ab5cc39d8d69fdc9244bc7b2f480e77c88)

## [2.44.0]https://github.com/datavzrd/datavzrd/compare/v2.43.6...v2.44.0 (2024-10-22)


### Features

* Add render-img option ([#792]https://github.com/datavzrd/datavzrd/issues/792) ([633a027]https://github.com/datavzrd/datavzrd/commit/633a027bb633eaa3dda8304550eb74cdfefb7715)

## [2.43.6]https://github.com/datavzrd/datavzrd/compare/v2.43.5...v2.43.6 (2024-10-21)


### Bug Fixes

* Fix row being unavailable in data function of custom plots with display-mode detail ([#802]https://github.com/datavzrd/datavzrd/issues/802) ([0fc7166]https://github.com/datavzrd/datavzrd/commit/0fc71662785bf16c902e55b5cc5682e6567b1fab)

## [2.43.5]https://github.com/datavzrd/datavzrd/compare/v2.43.4...v2.43.5 (2024-10-15)


### Bug Fixes

* Fix popover z-index for numeric search widget ([#798]https://github.com/datavzrd/datavzrd/issues/798) ([3cecbd6]https://github.com/datavzrd/datavzrd/commit/3cecbd638fd1a83baaf13605558c93e10bd708e4)
* Improve plot controls and container size ([#796]https://github.com/datavzrd/datavzrd/issues/796) ([7867ab1]https://github.com/datavzrd/datavzrd/commit/7867ab1268dc8f4ca9c3c5898c300d51184d783b)

## [2.43.4]https://github.com/datavzrd/datavzrd/compare/v2.43.3...v2.43.4 (2024-10-09)


### Bug Fixes

* Remove unused import ([#793]https://github.com/datavzrd/datavzrd/issues/793) ([1736ef7]https://github.com/datavzrd/datavzrd/commit/1736ef7cc3aa6dea39e83ef089a0a21874e242f1)

## [2.43.3]https://github.com/datavzrd/datavzrd/compare/v2.43.2...v2.43.3 (2024-10-04)


### Bug Fixes

* Fix render-html script placement ([8f9ed75]https://github.com/datavzrd/datavzrd/commit/8f9ed75b8302862c572247bfc39fc87f8643c4d6)

## [2.43.2]https://github.com/datavzrd/datavzrd/compare/v2.43.1...v2.43.2 (2024-10-01)


### Bug Fixes

* Adjust QR code size for smaller screens ([c5570d2]https://github.com/datavzrd/datavzrd/commit/c5570d273b36c7ce5c0c0a1c27952521023b9f1f)

## [2.43.1]https://github.com/datavzrd/datavzrd/compare/v2.43.0...v2.43.1 (2024-10-01)


### Bug Fixes

* Fix row sharing ([d6c6b29]https://github.com/datavzrd/datavzrd/commit/d6c6b295759eed5278d5ccb4d240e333713d6609)

## [2.43.0]https://github.com/datavzrd/datavzrd/compare/v2.42.1...v2.43.0 (2024-09-27)


### Features

* Add datavzrd spells ([#783]https://github.com/datavzrd/datavzrd/issues/783) ([f27011f]https://github.com/datavzrd/datavzrd/commit/f27011f05b0439b7e356e0a0a6833a92118193c3)

## [2.42.1]https://github.com/datavzrd/datavzrd/compare/v2.42.0...v2.42.1 (2024-09-24)


### Bug Fixes

* Deactivate plot view resize controls for composite plots ([#781]https://github.com/datavzrd/datavzrd/issues/781) ([bb739be]https://github.com/datavzrd/datavzrd/commit/bb739be1cb44a38e67fb815aba08253739d7e366)

## [2.42.0]https://github.com/datavzrd/datavzrd/compare/v2.41.3...v2.42.0 (2024-09-16)


### Features

* Add size controls for plot views ([#778]https://github.com/datavzrd/datavzrd/issues/778) ([a33f28d]https://github.com/datavzrd/datavzrd/commit/a33f28dc1c4235aea9c1e7db9a850cc48db6eb02)

## [2.41.3]https://github.com/datavzrd/datavzrd/compare/v2.41.2...v2.41.3 (2024-09-03)


### Bug Fixes

* Reconstruct table after SVG export ([0cd425a]https://github.com/datavzrd/datavzrd/commit/0cd425a0e601b5b35610d1e0ebf37e06659a6829)

## [2.41.2]https://github.com/datavzrd/datavzrd/compare/v2.41.1...v2.41.2 (2024-08-20)


### Bug Fixes

* Fix heatmaps in detail mode when another heatmap uses custom-content ([c1114ef]https://github.com/datavzrd/datavzrd/commit/c1114ef5c3983e3e28c2673be2d4a961d0a10065)
* Fix precision for heatmaps with display-mode: detail ([f46962b]https://github.com/datavzrd/datavzrd/commit/f46962bced945b7480082c71b6eb86ab27e3775c)

## [2.41.1]https://github.com/datavzrd/datavzrd/compare/v2.41.0...v2.41.1 (2024-07-22)


### Bug Fixes

* Fix additional header row offset ([#756]https://github.com/datavzrd/datavzrd/issues/756) ([d095ca2]https://github.com/datavzrd/datavzrd/commit/d095ca26ccaabc5e3eab873053315800a4c1845c)

## [2.41.0]https://github.com/datavzrd/datavzrd/compare/v2.40.0...v2.41.0 (2024-07-12)


### Features

* Allow unsorting tables ([#751]https://github.com/datavzrd/datavzrd/issues/751) ([de3fd98]https://github.com/datavzrd/datavzrd/commit/de3fd98120e271fa3770afe6305c888d1048a612)

## [2.40.0]https://github.com/datavzrd/datavzrd/compare/v2.39.1...v2.40.0 (2024-07-10)


### Features

* Improve context of error messages with format_serde_error ([#749]https://github.com/datavzrd/datavzrd/issues/749) ([af7cfbe]https://github.com/datavzrd/datavzrd/commit/af7cfbe4f66d34f65d7a699ae91a0cdd063f3a8d)

## [2.39.1]https://github.com/datavzrd/datavzrd/compare/v2.39.0...v2.39.1 (2024-07-09)


### Bug Fixes

* Fix SVG export for basic views without webview controls and linkouts ([f75bbc4]https://github.com/datavzrd/datavzrd/commit/f75bbc407d6659baee5c119f74cbc0cc2e725311)

## [2.39.0]https://github.com/datavzrd/datavzrd/compare/v2.38.3...v2.39.0 (2024-07-09)


### Features

* Show active sort order visually ([4d9956a]https://github.com/datavzrd/datavzrd/commit/4d9956aaadcf7215a531ab378094ddc65745cf21)

## [2.38.3]https://github.com/datavzrd/datavzrd/compare/v2.38.2...v2.38.3 (2024-07-05)


### Bug Fixes

* Escape description string ([#737]https://github.com/datavzrd/datavzrd/issues/737) ([5f82cf9]https://github.com/datavzrd/datavzrd/commit/5f82cf943f546ffdb360a47d60cf333c47d1061c)

## [2.38.2]https://github.com/datavzrd/datavzrd/compare/v2.38.1...v2.38.2 (2024-06-26)


### Bug Fixes

* Fix last column hidden on exported svg and adjust header height to eventual label ([#733]https://github.com/datavzrd/datavzrd/issues/733) ([0fcd3d7]https://github.com/datavzrd/datavzrd/commit/0fcd3d750c345d19c84aa78f7ee07e2464b57645)
* Remove heatmap table export which is superseeded by svg export ([#731]https://github.com/datavzrd/datavzrd/issues/731) ([be98965]https://github.com/datavzrd/datavzrd/commit/be98965a2027fd64474602f701e22b21870f269b)

## [2.38.1]https://github.com/datavzrd/datavzrd/compare/v2.38.0...v2.38.1 (2024-06-25)


### Performance Improvements

* Use better link time optimization on release profile ([#728]https://github.com/datavzrd/datavzrd/issues/728) ([2aad0a6]https://github.com/datavzrd/datavzrd/commit/2aad0a61d456010b955587e8ae9eeca213eadbe6)

## [2.38.0]https://github.com/datavzrd/datavzrd/compare/v2.37.0...v2.38.0 (2024-06-21)


### Features

* Add user notification for horizontal scrolling when viewport width is exceeded ([4bcb22b]https://github.com/datavzrd/datavzrd/commit/4bcb22bfec3316f0a827a792d7190535e4be257f)
* Allow hiding columns for in-memory-reports ([#726]https://github.com/datavzrd/datavzrd/issues/726) ([4656016]https://github.com/datavzrd/datavzrd/commit/4656016519484d653125f732be7570888b1d7f13)
* Allow sorting for in-memory-reports ([#724]https://github.com/datavzrd/datavzrd/issues/724) ([9eb38b1]https://github.com/datavzrd/datavzrd/commit/9eb38b1ff8d71f17fb16e764a47806ca0d76ff97)


### Bug Fixes

* Fix static search and plot views ([0be4d7a]https://github.com/datavzrd/datavzrd/commit/0be4d7ab1dbe3eb9e6a1034a30991d1109e2f585)

## [2.37.0]https://github.com/datavzrd/datavzrd/compare/v2.36.15...v2.37.0 (2024-06-18)


### Features

* Allow exporting table as SVG file ([#693]https://github.com/datavzrd/datavzrd/issues/693) ([0f32d66]https://github.com/datavzrd/datavzrd/commit/0f32d66c8856833881b006a96b016612732fb5f2)

## [2.36.15]https://github.com/datavzrd/datavzrd/compare/v2.36.14...v2.36.15 (2024-06-12)


### Bug Fixes

* Remove null being displayed when table doesnt have a description ([#720]https://github.com/datavzrd/datavzrd/issues/720) ([fac0d6d]https://github.com/datavzrd/datavzrd/commit/fac0d6d8d7633aa3c1dcfad0731c540340184302)

## [2.36.14]https://github.com/datavzrd/datavzrd/compare/v2.36.13...v2.36.14 (2024-06-11)


### Performance Improvements

* Render html contents via javascript ([#717]https://github.com/datavzrd/datavzrd/issues/717) ([8c00967]https://github.com/datavzrd/datavzrd/commit/8c00967c1fd4b5619421f0a0ce6571696d699c19)

## [2.36.13]https://github.com/datavzrd/datavzrd/compare/v2.36.12...v2.36.13 (2024-06-07)


### Performance Improvements

* Add modals via javascript for improved storage ([#716]https://github.com/datavzrd/datavzrd/issues/716) ([e500d83]https://github.com/datavzrd/datavzrd/commit/e500d838cdb72050c31ce9d38edda329812a0514)
* Bundle css into javascript ([#714]https://github.com/datavzrd/datavzrd/issues/714) ([95a7ed4]https://github.com/datavzrd/datavzrd/commit/95a7ed4aad38079682a727eb79e7e8eaa941d5cd)

## [2.36.12]https://github.com/datavzrd/datavzrd/compare/v2.36.11...v2.36.12 (2024-05-07)


### Bug Fixes

* Fix heatmap domain retrieval ([#698]https://github.com/datavzrd/datavzrd/issues/698) ([18cc469]https://github.com/datavzrd/datavzrd/commit/18cc469f140b6fd09744bd3dbcc4835f28269a44)

## [2.36.11]https://github.com/datavzrd/datavzrd/compare/v2.36.10...v2.36.11 (2024-05-03)


### Bug Fixes

* Display labels with display-mode: detail ([#695]https://github.com/datavzrd/datavzrd/issues/695) ([708e601]https://github.com/datavzrd/datavzrd/commit/708e60163aa83b75f5486e796c75a4046cd076a7)

## [2.36.10]https://github.com/datavzrd/datavzrd/compare/v2.36.9...v2.36.10 (2024-04-30)


### Bug Fixes

* Fix rendering of custom plot for display-mode: normal ([5841f34]https://github.com/datavzrd/datavzrd/commit/5841f34fd27c68d5d1c318bfe9f836c4ba39eaf7)

## [2.36.9]https://github.com/datavzrd/datavzrd/compare/v2.36.8...v2.36.9 (2024-03-15)


### Bug Fixes

* Dont minify custom javascript functions ([#676]https://github.com/datavzrd/datavzrd/issues/676) ([780018a]https://github.com/datavzrd/datavzrd/commit/780018a8d2ce4d5bd1e1a9b6c110418872eafff1)

## [2.36.8]https://github.com/datavzrd/datavzrd/compare/v2.36.7...v2.36.8 (2024-03-12)


### Bug Fixes

* Revert usage of numeric json types ([930a877]https://github.com/datavzrd/datavzrd/commit/930a877c7496bf562ffcca8c57f6bde37ac6a0ef)

## [2.36.7]https://github.com/datavzrd/datavzrd/compare/v2.36.6...v2.36.7 (2024-03-12)


### Bug Fixes

* Skip validations for non-present optional columns ([#673]https://github.com/datavzrd/datavzrd/issues/673) ([6379d21]https://github.com/datavzrd/datavzrd/commit/6379d2121f9497eb7cbddaf969a728caa2a68874)

## [2.36.6]https://github.com/datavzrd/datavzrd/compare/v2.36.5...v2.36.6 (2024-03-11)


### Bug Fixes

* Change integer type to fix possible overflow error ([#671]https://github.com/datavzrd/datavzrd/issues/671) ([fa629b8]https://github.com/datavzrd/datavzrd/commit/fa629b8f187ae01a90388376b027b29d43c3b0e1)

## [2.36.5]https://github.com/datavzrd/datavzrd/compare/v2.36.4...v2.36.5 (2024-03-08)


### Performance Improvements

* Use numeric json types ([#668]https://github.com/datavzrd/datavzrd/issues/668) ([b623473]https://github.com/datavzrd/datavzrd/commit/b62347332a1b15c94742c28f096ce044c938ea0b)

## [2.36.4]https://github.com/datavzrd/datavzrd/compare/v2.36.3...v2.36.4 (2024-03-04)


### Performance Improvements

* Use JSONM for compression ([#666]https://github.com/datavzrd/datavzrd/issues/666) ([512e410]https://github.com/datavzrd/datavzrd/commit/512e4101560033fe075e09dc364093ab8fe51641)

## [2.36.3]https://github.com/datavzrd/datavzrd/compare/v2.36.2...v2.36.3 (2024-02-28)


### Performance Improvements

* Minify table html files ([#661]https://github.com/datavzrd/datavzrd/issues/661) ([e1219cd]https://github.com/datavzrd/datavzrd/commit/e1219cd608ed0ed1f4fab112e20faf7fad6f1aa5)

## [2.36.2]https://github.com/datavzrd/datavzrd/compare/v2.36.1...v2.36.2 (2024-02-27)


### Performance Improvements

* Use single modal for histograms of all columns ([#659]https://github.com/datavzrd/datavzrd/issues/659) ([ba0e705]https://github.com/datavzrd/datavzrd/commit/ba0e705e3799510342a2652075df57bb9fe319b2)

## [2.36.1]https://github.com/datavzrd/datavzrd/compare/v2.36.0...v2.36.1 (2024-02-26)


### Miscellaneous Chores

* release 2.36.1 ([d9d021b]https://github.com/datavzrd/datavzrd/commit/d9d021b9df029feb7fa057cae7380b62916e8903)

## [2.36.0]https://github.com/datavzrd/datavzrd/compare/v2.35.4...v2.36.0 (2024-02-26)


### Features

* Add line-numbers keyword ([#648]https://github.com/datavzrd/datavzrd/issues/648) ([77196cc]https://github.com/datavzrd/datavzrd/commit/77196cc8b58d9704fdc8afa7322235dc476d5680)
* Allow downloading filtered data ([#646]https://github.com/datavzrd/datavzrd/issues/646) ([bf112a4]https://github.com/datavzrd/datavzrd/commit/bf112a4c59f144a065277d9e84d279e6d5c92ff4)
* Support json input via readervzrd ([#651]https://github.com/datavzrd/datavzrd/issues/651) ([994f897]https://github.com/datavzrd/datavzrd/commit/994f8978f4e292aae3b3caabe40799b6b8612639)


### Bug Fixes

* Adjust plot and html views to match styling of table views with padding for small descriptions ([#645]https://github.com/datavzrd/datavzrd/issues/645) ([1700cf1]https://github.com/datavzrd/datavzrd/commit/1700cf118f77b1b2047fc78cf7b6a2b6be576662)
* Fix brush plot on firefox ([#643]https://github.com/datavzrd/datavzrd/issues/643) ([e6fcbec]https://github.com/datavzrd/datavzrd/commit/e6fcbecc7463e43700801fe75379a0bedba45e8c)
* Fix plot view getting overlapped by filters ([#638]https://github.com/datavzrd/datavzrd/issues/638) ([14763f6]https://github.com/datavzrd/datavzrd/commit/14763f637ef5cf08f93d21e367da9406333ffa68)

## [2.35.4]https://github.com/datavzrd/datavzrd/compare/v2.35.3...v2.35.4 (2024-01-24)


### Bug Fixes

* Fix bar plot without color definition ([#634]https://github.com/datavzrd/datavzrd/issues/634) ([516e65e]https://github.com/datavzrd/datavzrd/commit/516e65ed373b049dd9dd094600dc3172bb7ee852)

## [2.35.3]https://github.com/datavzrd/datavzrd/compare/v2.35.2...v2.35.3 (2024-01-22)


### Performance Improvements

* Use lz-string compression for search dialogs ([#631]https://github.com/datavzrd/datavzrd/issues/631) ([5cf0f1a]https://github.com/datavzrd/datavzrd/commit/5cf0f1af366db7c496ac188c1f6cc75aa24d2446)

## [2.35.2]https://github.com/datavzrd/datavzrd/compare/v2.35.1...v2.35.2 (2024-01-19)


### Features

* Move documentation to website ([#626]https://github.com/datavzrd/datavzrd/issues/626) ([eede301]https://github.com/datavzrd/datavzrd/commit/eede301e2cd17b6387c4f94d622086882b864829)


### Miscellaneous Chores

* Release 2.35.2 ([c2dfb42]https://github.com/datavzrd/datavzrd/commit/c2dfb4255d2cd2279aeb436c324ce48c77bdef41)
* Release 2.35.2 ([aef0530]https://github.com/datavzrd/datavzrd/commit/aef0530e79c0590b01c78d3ec0a26eb165c48de4)
* Release 2.35.2 ([30140c9]https://github.com/datavzrd/datavzrd/commit/30140c90c6fd739ee46af87dd7ad618b174d3f44)

## [2.35.1]https://www.github.com/datavzrd/datavzrd/compare/v2.35.0...v2.35.1 (2024-01-18)


### Bug Fixes

* Allow sequential scales with schemes ([#620]https://www.github.com/datavzrd/datavzrd/issues/620) ([e1b0c51]https://www.github.com/datavzrd/datavzrd/commit/e1b0c51f6545220eefd564490fb8443339255207)

## [2.35.0]https://www.github.com/datavzrd/datavzrd/compare/v2.34.0...v2.35.0 (2023-12-20)


### Features

* Add new multi-select filter widgets for text columns with few values ([#604]https://www.github.com/datavzrd/datavzrd/issues/604) ([08af75f]https://www.github.com/datavzrd/datavzrd/commit/08af75f146b3f676272065f4791ce95c64f86bf9)

## [2.34.0]https://www.github.com/datavzrd/datavzrd/compare/v2.33.2...v2.34.0 (2023-12-14)


### Features

* Preprocess color words for more aesthetic colors ([#600]https://www.github.com/datavzrd/datavzrd/issues/600) ([35fac66]https://www.github.com/datavzrd/datavzrd/commit/35fac6647fccea2df9ecb071f08b4b5ae45dd365)

### [2.33.2]https://www.github.com/datavzrd/datavzrd/compare/v2.33.1...v2.33.2 (2023-12-08)


### Bug Fixes

* Fix missing header offset for views with static paging ([#598]https://www.github.com/datavzrd/datavzrd/issues/598) ([14d38bb]https://www.github.com/datavzrd/datavzrd/commit/14d38bb774e276cfbd15ba45bcd787561d7aa5b9)

### [2.33.1]https://www.github.com/datavzrd/datavzrd/compare/v2.33.0...v2.33.1 (2023-12-08)


### Bug Fixes

* Fix non-working precision keyword for case 0 ([#596]https://www.github.com/datavzrd/datavzrd/issues/596) ([aea4db2]https://www.github.com/datavzrd/datavzrd/commit/aea4db2f432367ef27d4fd4e26ccf77f7ce74953)

## [2.33.0]https://www.github.com/datavzrd/datavzrd/compare/v2.32.0...v2.33.0 (2023-11-22)


### Features

* Add padding to description if it is small ([#593]https://www.github.com/datavzrd/datavzrd/issues/593) ([c94aa9e]https://www.github.com/datavzrd/datavzrd/commit/c94aa9e49f1cbe533d98f2dda3a131046cdaa9de)


### Bug Fixes

* Fix hidden view selection by description ([#591]https://www.github.com/datavzrd/datavzrd/issues/591) ([6e71ed1]https://www.github.com/datavzrd/datavzrd/commit/6e71ed107f289ab880dd0fa378fdf8e76be8d11e)

## [2.32.0]https://www.github.com/datavzrd/datavzrd/compare/v2.31.1...v2.32.0 (2023-11-21)


### Features

* Add color option to tick and bar plots ([#589]https://www.github.com/datavzrd/datavzrd/issues/589) ([6fbfad0]https://www.github.com/datavzrd/datavzrd/commit/6fbfad0ccb560f234d893457bd337ddc81cd97dd)

### [2.31.1]https://www.github.com/datavzrd/datavzrd/compare/v2.31.0...v2.31.1 (2023-11-20)


### Bug Fixes

* Remove domain-mid column type error on empty datasets ([#583]https://www.github.com/datavzrd/datavzrd/issues/583) ([003d96b]https://www.github.com/datavzrd/datavzrd/commit/003d96bd122d0a6a98eb271f89a4dc5cc88d18f6)

## [2.31.0]https://www.github.com/datavzrd/datavzrd/compare/v2.30.0...v2.31.0 (2023-11-09)


### Features

* Add domain-mid keyword for heatmaps ([#574]https://www.github.com/datavzrd/datavzrd/issues/574) ([3f4dd2a]https://www.github.com/datavzrd/datavzrd/commit/3f4dd2a29d6d1da6b9e9367bda229e82a39b00ea)

## [2.30.0]https://www.github.com/datavzrd/datavzrd/compare/v2.29.1...v2.30.0 (2023-11-07)


### Features

* Allow custom-content in link-to-url spec ([#572]https://www.github.com/datavzrd/datavzrd/issues/572) ([41b1a06]https://www.github.com/datavzrd/datavzrd/commit/41b1a0682d38bba7b6edece500c7dcbd9163c475)

### [2.29.1]https://www.github.com/datavzrd/datavzrd/compare/v2.29.0...v2.29.1 (2023-11-06)


### Bug Fixes

* Fix potential wrong ordering of add-columns ([#568]https://www.github.com/datavzrd/datavzrd/issues/568) ([369059d]https://www.github.com/datavzrd/datavzrd/commit/369059d3ed66434bfb32a1cd5cb4f791efd74176)

## [2.29.0]https://www.github.com/datavzrd/datavzrd/compare/v2.28.0...v2.29.0 (2023-11-03)


### Features

* Allow specifying additional columns generated from dataset ([#566]https://www.github.com/datavzrd/datavzrd/issues/566) ([3ed766a]https://www.github.com/datavzrd/datavzrd/commit/3ed766ad8a4748d5d6acb34423d489ad138a589f)

## [2.28.0]https://www.github.com/datavzrd/datavzrd/compare/v2.27.0...v2.28.0 (2023-10-25)


### Features

* Move filter mechanism into popover ([#561]https://www.github.com/datavzrd/datavzrd/issues/561) ([dcd310e]https://www.github.com/datavzrd/datavzrd/commit/dcd310e78f213a6d0ad18ce387128c7c7c5a8676)

## [2.27.0]https://www.github.com/datavzrd/datavzrd/compare/v2.26.0...v2.27.0 (2023-10-17)


### Features

* Add special handling for ellipsis: 0 ([#553]https://www.github.com/datavzrd/datavzrd/issues/553) ([c8828c2]https://www.github.com/datavzrd/datavzrd/commit/c8828c2464ef333ec114a050df74a06c43ae4a9b)

## [2.26.0]https://www.github.com/datavzrd/datavzrd/compare/v2.25.0...v2.26.0 (2023-10-05)


### Features

* Allow quick heatmap defintions via vega-lite type ([#548]https://www.github.com/datavzrd/datavzrd/issues/548) ([15e721a]https://www.github.com/datavzrd/datavzrd/commit/15e721a8bac8e6eda4a0e52a923954c36dd8a8be)

## [2.25.0]https://www.github.com/datavzrd/datavzrd/compare/v2.24.1...v2.25.0 (2023-09-18)


### Features

* Show description by default with higher z-index and lower background opacity ([#539]https://www.github.com/datavzrd/datavzrd/issues/539) ([21fc2b7]https://www.github.com/datavzrd/datavzrd/commit/21fc2b791b886df0127ed77485348ade6f22a2ae)


### Bug Fixes

* Remove duplicated word rows ([#540]https://www.github.com/datavzrd/datavzrd/issues/540) ([f3772d1]https://www.github.com/datavzrd/datavzrd/commit/f3772d18f7a1344359c5a97b3b91240dd4ea1393)

### [2.24.1]https://www.github.com/datavzrd/datavzrd/compare/v2.24.0...v2.24.1 (2023-09-07)


### Bug Fixes

* Show row count badge only for table views ([#535]https://www.github.com/datavzrd/datavzrd/issues/535) ([054edbe]https://www.github.com/datavzrd/datavzrd/commit/054edbeff9800eaf5790f8a13dfe9831d32838f6)

## [2.24.0]https://www.github.com/datavzrd/datavzrd/compare/v2.23.9...v2.24.0 (2023-09-05)


### Features

* Allow custom or custom-path usage with display-mode: detail ([#532]https://www.github.com/datavzrd/datavzrd/issues/532) ([83b7289]https://www.github.com/datavzrd/datavzrd/commit/83b728921372b7fe9b10f02ab6c671f0429cfc64)

### [2.23.9]https://www.github.com/datavzrd/datavzrd/compare/v2.23.8...v2.23.9 (2023-08-28)


### Miscellaneous Chores

* release 2.23.9 ([28a97ba]https://www.github.com/datavzrd/datavzrd/commit/28a97ba3a865d4adb275db1c8eb3ed8b37bff42f)

### [2.23.8]https://www.github.com/datavzrd/datavzrd/compare/v2.23.7...v2.23.8 (2023-08-24)


### Bug Fixes

* Fix rendering for reports with aux-domains ([#519]https://www.github.com/datavzrd/datavzrd/issues/519) ([d5ef444]https://www.github.com/datavzrd/datavzrd/commit/d5ef444b64147c37b16e103f04fc7602b62c714a)

### [2.23.7]https://www.github.com/datavzrd/datavzrd/compare/v2.23.6...v2.23.7 (2023-08-21)


### Bug Fixes

* Fix possibly misplaced view dropdown for very long titles ([#511]https://www.github.com/datavzrd/datavzrd/issues/511) ([b4ec137]https://www.github.com/datavzrd/datavzrd/commit/b4ec137ed274ce30f41ddb91709a2381de80b906)

### [2.23.6]https://www.github.com/datavzrd/datavzrd/compare/v2.23.5...v2.23.6 (2023-08-21)


### Bug Fixes

* Fix static search dialog ([#508]https://www.github.com/datavzrd/datavzrd/issues/508) ([07e90ef]https://www.github.com/datavzrd/datavzrd/commit/07e90ef20730fd7282ec57cd3d67c6f11842ed26)

### [2.23.5]https://www.github.com/datavzrd/datavzrd/compare/v2.23.4...v2.23.5 (2023-08-18)


### Bug Fixes

* Fix histogram embedding ([#504]https://www.github.com/datavzrd/datavzrd/issues/504) ([93445ea]https://www.github.com/datavzrd/datavzrd/commit/93445eafeec1d0260609fbd5996dd4cb750e8d80)

### [2.23.4]https://www.github.com/datavzrd/datavzrd/compare/v2.23.3...v2.23.4 (2023-08-18)


### Bug Fixes

* Fix embed search function call ([#501]https://www.github.com/datavzrd/datavzrd/issues/501) ([239dd12]https://www.github.com/datavzrd/datavzrd/commit/239dd12e890bee2318937c3fce6f27e62cfc6b11)

### [2.23.3]https://www.github.com/datavzrd/datavzrd/compare/v2.23.2...v2.23.3 (2023-08-16)


### Bug Fixes

* Export embed_search function ([#497]https://www.github.com/datavzrd/datavzrd/issues/497) ([5631599]https://www.github.com/datavzrd/datavzrd/commit/563159946f429728977deefdd7ae554ffd3ebbb1)
* Optimize new menu design and usage ([#493]https://www.github.com/datavzrd/datavzrd/issues/493) ([4019920]https://www.github.com/datavzrd/datavzrd/commit/40199209dc4393c29a0e7f90faeb4332ce713c7a)

### [2.23.2]https://www.github.com/datavzrd/datavzrd/compare/v2.23.1...v2.23.2 (2023-08-10)


### Bug Fixes

* Fix custom-content for heatmap definitions ([#494]https://www.github.com/datavzrd/datavzrd/issues/494) ([d5c6856]https://www.github.com/datavzrd/datavzrd/commit/d5c6856a2f176cfb5ebb53b06498409858bc2cff)

### [2.23.1]https://www.github.com/datavzrd/datavzrd/compare/v2.23.0...v2.23.1 (2023-08-04)


### Bug Fixes

* Improve error message for JSON parsing error ([#488]https://www.github.com/datavzrd/datavzrd/issues/488) ([628192a]https://www.github.com/datavzrd/datavzrd/commit/628192a16e76a1a35ff55ee028e341aede49fc0b)
* Show missing table headers ([#489]https://www.github.com/datavzrd/datavzrd/issues/489) ([9b7cc4a]https://www.github.com/datavzrd/datavzrd/commit/9b7cc4a3da6846f5ed16b99110214a42a7bbd2d8)

## [2.23.0]https://www.github.com/datavzrd/datavzrd/compare/v2.22.0...v2.23.0 (2023-08-03)


### Features

* Add hamburger menu ([#486]https://www.github.com/datavzrd/datavzrd/issues/486) ([006dd97]https://www.github.com/datavzrd/datavzrd/commit/006dd97fed14efce6c75aaf01e06a54a60d3087c)


### Bug Fixes

* Fix clear filters ([#478]https://www.github.com/datavzrd/datavzrd/issues/478) ([22923db]https://www.github.com/datavzrd/datavzrd/commit/22923db0f7990f5ef073c74bda5320a7f264bf96)

## [2.22.0]https://www.github.com/datavzrd/datavzrd/compare/v2.21.2...v2.22.0 (2023-07-06)


### Features

* Show error message and stack when custom function fails ([#462]https://www.github.com/datavzrd/datavzrd/issues/462) ([91bfa9a]https://www.github.com/datavzrd/datavzrd/commit/91bfa9a825ef61ec3dc8f017c280288735b8ede7)


### Bug Fixes

* Add npm build to build.rs ([#466]https://www.github.com/datavzrd/datavzrd/issues/466) ([8d843b2]https://www.github.com/datavzrd/datavzrd/commit/8d843b20f1077d51746983e6f7c23a445509cdd6)
* Fix page calculation ([#467]https://www.github.com/datavzrd/datavzrd/issues/467) ([23e454c]https://www.github.com/datavzrd/datavzrd/commit/23e454c06079b8aaa0176bf396bc823b8bc729b2)

### [2.21.2]https://www.github.com/datavzrd/datavzrd/compare/v2.21.1...v2.21.2 (2023-07-03)


### Bug Fixes

* Fix hidden table headers when table has additional headers ([#457]https://www.github.com/datavzrd/datavzrd/issues/457) ([415c646]https://www.github.com/datavzrd/datavzrd/commit/415c6469a88fe0259e4a2af8fe3813b8b666162a)

### [2.21.1]https://www.github.com/datavzrd/datavzrd/compare/v2.21.0...v2.21.1 (2023-06-29)


### Bug Fixes

* proper json encoding for domain boundaries; fixed subtraction overflow error in page count calculation. ([26a4970]https://www.github.com/datavzrd/datavzrd/commit/26a4970107ad37f4c121e90827e7c9d295466ca6)

## [2.21.0]https://www.github.com/datavzrd/datavzrd/compare/v2.20.0...v2.21.0 (2023-06-02)


### Features

* Allow column configuration via range ([#444]https://www.github.com/datavzrd/datavzrd/issues/444) ([e973a2e]https://www.github.com/datavzrd/datavzrd/commit/e973a2e5b975af5caf5208e1214bc621b63b5cb3)
* Allow LaTeX within table or plot description ([#441]https://www.github.com/datavzrd/datavzrd/issues/441) ([b41c1fb]https://www.github.com/datavzrd/datavzrd/commit/b41c1fbc1e5cd9902951479ab6429b16abc5b71d)

## [2.20.0]https://www.github.com/datavzrd/datavzrd/compare/v2.19.2...v2.20.0 (2023-05-24)


### Features

* migrate to fancy-regex for regex evaluation (e.g. enabling negative look-ahead/around) ([#432]https://www.github.com/datavzrd/datavzrd/issues/432) ([5478cb7]https://www.github.com/datavzrd/datavzrd/commit/5478cb705b1b749750fa8a5af1b7495654b4fa46)


### Bug Fixes

* Add missing error message for missing column ([#431]https://www.github.com/datavzrd/datavzrd/issues/431) ([9528ab0]https://www.github.com/datavzrd/datavzrd/commit/9528ab0a5b85952183c842b9db8cf4b5f0934fb5)
* Only skip plot preprocessing when given dataset is empty ([#434]https://www.github.com/datavzrd/datavzrd/issues/434) ([8c2a71f]https://www.github.com/datavzrd/datavzrd/commit/8c2a71f69ae981a4ce190803e774875767c718e6)
* Remove re-rendering when mouse leaves brush filter unpressed ([#437]https://www.github.com/datavzrd/datavzrd/issues/437) ([fa6480c]https://www.github.com/datavzrd/datavzrd/commit/fa6480cc3837f9616a3727f02639dd5361fa3e93)
* remove superfluous dbg statement ([#428]https://www.github.com/datavzrd/datavzrd/issues/428) ([020cc1d]https://www.github.com/datavzrd/datavzrd/commit/020cc1dc94d958c8d06d3b1f75c8dd46fca569fa)

### [2.19.2]https://www.github.com/datavzrd/datavzrd/compare/v2.19.1...v2.19.2 (2023-05-08)


### Bug Fixes

* Fix dropdown of empty table view ([#424]https://www.github.com/datavzrd/datavzrd/issues/424) ([fffdf3e]https://www.github.com/datavzrd/datavzrd/commit/fffdf3e797866d40aa9365febcbb14257af4a9d3)

### [2.19.1]https://www.github.com/datavzrd/datavzrd/compare/v2.19.0...v2.19.1 (2023-05-04)


### Bug Fixes

* Skip preprocessing when dataset is empty ([#421]https://www.github.com/datavzrd/datavzrd/issues/421) ([3bfeaf3]https://www.github.com/datavzrd/datavzrd/commit/3bfeaf3a636133d676a464f919b770ad6ad747a1)

## [2.19.0]https://www.github.com/datavzrd/datavzrd/compare/v2.18.5...v2.19.0 (2023-04-29)


### Features

* Show number of rows in badge ([#418]https://www.github.com/datavzrd/datavzrd/issues/418) ([6551ebd]https://www.github.com/datavzrd/datavzrd/commit/6551ebd7239da7bfdba2231a761e5736a19444ac)

### [2.18.5]https://www.github.com/datavzrd/datavzrd/compare/v2.18.4...v2.18.5 (2023-04-27)


### Bug Fixes

* `<a target="_blank">` security vulnerability ([#413]https://www.github.com/datavzrd/datavzrd/issues/413) ([9df908a]https://www.github.com/datavzrd/datavzrd/commit/9df908a6cfb0d5dc1ec3e216d805a554c12fcd27)
* Render missing empty report when dataset with multiple header rows is empty ([#416]https://www.github.com/datavzrd/datavzrd/issues/416) ([25c7341]https://www.github.com/datavzrd/datavzrd/commit/25c7341cf1460caef0e794421c1fbb8581993e09)

### [2.18.4]https://www.github.com/datavzrd/datavzrd/compare/v2.18.3...v2.18.4 (2023-04-17)


### Bug Fixes

* Fix custom formatter ([#409]https://www.github.com/datavzrd/datavzrd/issues/409) ([ea53bf2]https://www.github.com/datavzrd/datavzrd/commit/ea53bf26873d6cea6b36121979056cd0db579628)

### [2.18.3]https://www.github.com/datavzrd/datavzrd/compare/v2.18.2...v2.18.3 (2023-03-30)


### Bug Fixes

* Fix table plot for wide tables ([#404]https://www.github.com/datavzrd/datavzrd/issues/404) ([c8a92ce]https://www.github.com/datavzrd/datavzrd/commit/c8a92ce8bad029bc4abb6834c45a3a97d6145055)
* Pre-calculate numeric heatmap domain ([#402]https://www.github.com/datavzrd/datavzrd/issues/402) ([b91129a]https://www.github.com/datavzrd/datavzrd/commit/b91129a169b204ad9eb64c4bf998f93583c45ee7)

### [2.18.2]https://www.github.com/datavzrd/datavzrd/compare/v2.18.1...v2.18.2 (2023-03-30)


### Bug Fixes

* Fix domain detection with NA values ([#400]https://www.github.com/datavzrd/datavzrd/issues/400) ([915c8c8]https://www.github.com/datavzrd/datavzrd/commit/915c8c837e4b3987e5a15ad252917808c74bec18)

### [2.18.1]https://www.github.com/datavzrd/datavzrd/compare/v2.18.0...v2.18.1 (2023-03-22)


### Miscellaneous Chores

* release 2.18.1 ([37ec953]https://www.github.com/datavzrd/datavzrd/commit/37ec9535a006706fe24cc67872f6dd786a75c649)

## [2.18.0]https://www.github.com/datavzrd/datavzrd/compare/v2.17.1...v2.18.0 (2023-03-01)


### Features

* Remove print option in favour of vega plot view ([#366]https://www.github.com/datavzrd/datavzrd/issues/366) ([f2bd9a0]https://www.github.com/datavzrd/datavzrd/commit/f2bd9a008c08801153773e05467015d3ba01b78e)


### Bug Fixes

* Fix new-window keyword ([#369]https://www.github.com/datavzrd/datavzrd/issues/369) ([efd2290]https://www.github.com/datavzrd/datavzrd/commit/efd22905ddc536987705ffa248c11b52c6acf1c7)
* Generate default column spec automatically for columns that are not specified via the config ([#364]https://www.github.com/datavzrd/datavzrd/issues/364) ([b849743]https://www.github.com/datavzrd/datavzrd/commit/b849743d7c1a0e3219518ed6a0d8efe9a07f94f6)

### [2.17.1]https://www.github.com/datavzrd/datavzrd/compare/v2.17.0...v2.17.1 (2023-02-14)


### Bug Fixes

* Fix non-working filter if brush is dragged outside of plot ([#359]https://www.github.com/datavzrd/datavzrd/issues/359) ([54138ed]https://www.github.com/datavzrd/datavzrd/commit/54138ed311758146efb9e7f376122840eab6218c)

## [2.17.0]https://www.github.com/datavzrd/datavzrd/compare/v2.16.2...v2.17.0 (2023-02-13)


### Features

* Add debug mode ([#354]https://www.github.com/datavzrd/datavzrd/issues/354) ([d386da2]https://www.github.com/datavzrd/datavzrd/commit/d386da2abca5507165f15bd4eb9c950ce6618c86)


### Bug Fixes

* Fix rendering of header rows after page change ([#358]https://www.github.com/datavzrd/datavzrd/issues/358) ([ecbe148]https://www.github.com/datavzrd/datavzrd/commit/ecbe14891164e0a1ec10d22488e7de03e34b9d30)

### [2.16.2]https://www.github.com/datavzrd/datavzrd/compare/v2.16.1...v2.16.2 (2023-02-08)


### Bug Fixes

* Fix custom plots on multi page views ([#351]https://www.github.com/datavzrd/datavzrd/issues/351) ([1618cf5]https://www.github.com/datavzrd/datavzrd/commit/1618cf5840fd66e5657f50cd37370c7072231183)

### [2.16.1]https://www.github.com/datavzrd/datavzrd/compare/v2.16.0...v2.16.1 (2023-02-08)


### Bug Fixes

* Accept double quotes on regexes ([#346]https://www.github.com/datavzrd/datavzrd/issues/346) ([1c32c10]https://www.github.com/datavzrd/datavzrd/commit/1c32c101fff44649b7526787be8528cea6dfb24c)
* Fix js for multiple header ellipsis usage ([#342]https://www.github.com/datavzrd/datavzrd/issues/342) ([70aa282]https://www.github.com/datavzrd/datavzrd/commit/70aa282a7b08a884dc9865b84a7fd662886442c6)
* Improve context when calculating links between datasets ([#349]https://www.github.com/datavzrd/datavzrd/issues/349) ([e29cff1]https://www.github.com/datavzrd/datavzrd/commit/e29cff11f1bee171629891bd1c849fc640a6316e)
* Show ellipsis as tooltip ([#350]https://www.github.com/datavzrd/datavzrd/issues/350) ([a77509a]https://www.github.com/datavzrd/datavzrd/commit/a77509ac22c9d01ba40d42275013f206ef9b5b3e)

## [2.16.0]https://www.github.com/datavzrd/datavzrd/compare/v2.15.0...v2.16.0 (2023-02-06)


### Features

* Add --overwrite-output option ([#336]https://www.github.com/datavzrd/datavzrd/issues/336) ([a24f648]https://www.github.com/datavzrd/datavzrd/commit/a24f64866f7252278c9ba36121c7bc20cb1f2d9d)


### Bug Fixes

* Turn off webview controls by default ([#335]https://www.github.com/datavzrd/datavzrd/issues/335) ([55245ff]https://www.github.com/datavzrd/datavzrd/commit/55245ff2c07da743d6ba41134eae3aba67e32384)

## [2.15.0]https://www.github.com/datavzrd/datavzrd/compare/v2.14.1...v2.15.0 (2023-02-02)


### Features

* Add row sharing option ([#323]https://www.github.com/datavzrd/datavzrd/issues/323) ([3dad613]https://www.github.com/datavzrd/datavzrd/commit/3dad6137e5ad1d6a6541e6b0ce0a0307aa46a13d)


### Performance Improvements

* Remove html search pages for views that don't use them ([#324]https://www.github.com/datavzrd/datavzrd/issues/324) ([965eec0]https://www.github.com/datavzrd/datavzrd/commit/965eec091610f660ec26503c89414f7e38fc194f)

### [2.14.1]https://www.github.com/datavzrd/datavzrd/compare/v2.14.0...v2.14.1 (2023-01-23)


### Bug Fixes

* Round domains according to precision ([#319]https://www.github.com/datavzrd/datavzrd/issues/319) ([a67c687]https://www.github.com/datavzrd/datavzrd/commit/a67c687b60744b43ec8e9c5c304d985ed3402c43)


### Performance Improvements

* Compress data for plot views with lz-string ([#312]https://www.github.com/datavzrd/datavzrd/issues/312) ([f45f1fc]https://www.github.com/datavzrd/datavzrd/commit/f45f1fcba7add4f812b7ab1c513624046187ecb7)

## [2.14.0]https://www.github.com/datavzrd/datavzrd/compare/v2.13.0...v2.14.0 (2023-01-16)


### Features

* Add ellipsis option for header definitions ([#310]https://www.github.com/datavzrd/datavzrd/issues/310) ([e9c82ed]https://www.github.com/datavzrd/datavzrd/commit/e9c82edddb188e3de218d6d01d7db273204309de)

## [2.13.0]https://www.github.com/datavzrd/datavzrd/compare/v2.12.0...v2.13.0 (2023-01-11)


### Features

* Add label keyword to column spec ([#305]https://www.github.com/datavzrd/datavzrd/issues/305) ([b940656]https://www.github.com/datavzrd/datavzrd/commit/b94065600bb8ae3db3cefd5505720935c095d5de)


### Bug Fixes

* allow to access row in data function of custom plot ([#308]https://www.github.com/datavzrd/datavzrd/issues/308) ([ad78d32]https://www.github.com/datavzrd/datavzrd/commit/ad78d3273694507229d66ce6f58f6a745952d943)
* Fix headers for views without detail mode and no header labels ([#309]https://www.github.com/datavzrd/datavzrd/issues/309) ([e731876]https://www.github.com/datavzrd/datavzrd/commit/e731876e4ac5ae5df64c4850dc3406c85593d9af)
* Remove validation error when values exceed given domain and clamp is set to true ([#304]https://www.github.com/datavzrd/datavzrd/issues/304) ([3c5e9fd]https://www.github.com/datavzrd/datavzrd/commit/3c5e9fd8527cfe842cc8be6410f20f44fd18aa4e)

## [2.12.0]https://www.github.com/datavzrd/datavzrd/compare/v2.11.1...v2.12.0 (2023-01-09)


### Features

* Add log scale value validation for plots ([#299]https://www.github.com/datavzrd/datavzrd/issues/299) ([258c506]https://www.github.com/datavzrd/datavzrd/commit/258c506f7e0253424be9332bb71cc74479fc3dde)


### Bug Fixes

* Fix column classification for tables with additional header rows ([#298]https://www.github.com/datavzrd/datavzrd/issues/298) ([756fdd0]https://www.github.com/datavzrd/datavzrd/commit/756fdd044b5180a885683280c13d77d7755d1286)
* Fix precision keyword for bar and tick plots ([#301]https://www.github.com/datavzrd/datavzrd/issues/301) ([bb1e763]https://www.github.com/datavzrd/datavzrd/commit/bb1e7634542f8f70159453b6a773ec07902af97e)

### [2.11.1]https://www.github.com/datavzrd/datavzrd/compare/v2.11.0...v2.11.1 (2022-12-20)


### Bug Fixes

* Add missing clamp parameter to heatmap plot ([#294]https://www.github.com/datavzrd/datavzrd/issues/294) ([c6b0ee3]https://www.github.com/datavzrd/datavzrd/commit/c6b0ee34fce555ba980a225c45bdc4f00478a5f9)
* Fix wrong data values for tick and bar plots ([#290]https://www.github.com/datavzrd/datavzrd/issues/290) ([3d5086a]https://www.github.com/datavzrd/datavzrd/commit/3d5086aa9ccef1e6b5eeb4177edaa051660d46c7)

## [2.11.0]https://www.github.com/datavzrd/datavzrd/compare/v2.10.1...v2.11.0 (2022-12-07)


### Features

* Optimize NA value recognition ([#280]https://www.github.com/datavzrd/datavzrd/issues/280) ([69ce037]https://www.github.com/datavzrd/datavzrd/commit/69ce037190074ae639af5f47ccb212f774d84151)

### [2.10.1]https://www.github.com/datavzrd/datavzrd/compare/v2.10.0...v2.10.1 (2022-12-01)


### Bug Fixes

* Don't show empty values an NaN for numeric columns ([#278]https://www.github.com/datavzrd/datavzrd/issues/278) ([4806d0c]https://www.github.com/datavzrd/datavzrd/commit/4806d0cc415a2cefb7b3ce334712f0a9d5e73bf1)

## [2.10.0]https://www.github.com/datavzrd/datavzrd/compare/v2.9.0...v2.10.0 (2022-11-30)


### Features

* Make excel export option configurable per dataset ([#276]https://www.github.com/datavzrd/datavzrd/issues/276) ([c73a6b4]https://www.github.com/datavzrd/datavzrd/commit/c73a6b4beb2d36e5ff94679fe082bd26378847f6)

## [2.9.0]https://www.github.com/datavzrd/datavzrd/compare/v2.8.1...v2.9.0 (2022-11-17)


### Features

* Allow specifying a path to a custom js function ([#267]https://www.github.com/datavzrd/datavzrd/issues/267) ([1eb1453]https://www.github.com/datavzrd/datavzrd/commit/1eb145338b551285926ff8449ebd90664688f2d3)


### Bug Fixes

* Fix error when rendering empty multi header files ([#268]https://www.github.com/datavzrd/datavzrd/issues/268) ([9c2b464]https://www.github.com/datavzrd/datavzrd/commit/9c2b4649cc6ab170a048d7a7154625b28f5be309)

### [2.8.1]https://www.github.com/koesterlab/datavzrd/compare/v2.8.0...v2.8.1 (2022-11-11)


### Bug Fixes

* Fix row height ([#264]https://www.github.com/koesterlab/datavzrd/issues/264) ([0af7952]https://www.github.com/koesterlab/datavzrd/commit/0af7952d92bf5c027378cfa3e46b223c8c31ebae)

## [2.8.0]https://www.github.com/koesterlab/datavzrd/compare/v2.7.2...v2.8.0 (2022-11-11)


### Features

* Add basic excel export option ([#258]https://www.github.com/koesterlab/datavzrd/issues/258) ([b684381]https://www.github.com/koesterlab/datavzrd/commit/b684381ad64286ce54e93f354a02001b9d0fe7dc)
* Panic if log scale includes zero ([#262]https://www.github.com/koesterlab/datavzrd/issues/262) ([eb35932]https://www.github.com/koesterlab/datavzrd/commit/eb359325fc2dde93f437f09f9cb1749174595301)
* Validate domains of plots ([#260]https://www.github.com/koesterlab/datavzrd/issues/260) ([fb3d87a]https://www.github.com/koesterlab/datavzrd/commit/fb3d87af17a71ba263a2f0fe04a3191f28a9065b)

### [2.7.2]https://www.github.com/koesterlab/datavzrd/compare/v2.7.1...v2.7.2 (2022-11-04)


### Bug Fixes

* Fix overlapping fonts by removing line breaks ([#249]https://www.github.com/koesterlab/datavzrd/issues/249) ([077afdd]https://www.github.com/koesterlab/datavzrd/commit/077afdd654bb88d77c7363ff893d2ab784510ad9)

### [2.7.1]https://www.github.com/koesterlab/datavzrd/compare/v2.7.0...v2.7.1 (2022-11-02)


### Bug Fixes

* more lighweight UI

## [2.7.0]https://www.github.com/koesterlab/datavzrd/compare/v2.6.1...v2.7.0 (2022-10-28)


### Features

* Add config keyword plot-view-legend ([#241]https://www.github.com/koesterlab/datavzrd/issues/241) ([0f74b72]https://www.github.com/koesterlab/datavzrd/commit/0f74b7261a5ccef447f472a4b4fc2b46d5d002d5)
* Add new keyword bars ([#242]https://www.github.com/koesterlab/datavzrd/issues/242) ([fc1add6]https://www.github.com/koesterlab/datavzrd/commit/fc1add6aa4bcdd58fd95ff9d38b081f915751248)

### [2.6.1]https://www.github.com/koesterlab/datavzrd/compare/v2.6.0...v2.6.1 (2022-10-25)


### Bug Fixes

* Add context to error when parsing numeric domain ([#238]https://www.github.com/koesterlab/datavzrd/issues/238) ([3e166cd]https://www.github.com/koesterlab/datavzrd/commit/3e166cd0eb7d71df02f788e2813b65453389049b)
* Fix wrong classification of empty columns ([#239]https://www.github.com/koesterlab/datavzrd/issues/239) ([c02335d]https://www.github.com/koesterlab/datavzrd/commit/c02335d4fce596b37de867716548a99b4ea33777)

## [2.6.0]https://www.github.com/koesterlab/datavzrd/compare/v2.5.2...v2.6.0 (2022-10-24)


### Features

* Merge legends when domains are equal ([#227]https://www.github.com/koesterlab/datavzrd/issues/227) ([aa220cb]https://www.github.com/koesterlab/datavzrd/commit/aa220cb786e071b400220d4f67ce3f8cb7e3e241)


### Bug Fixes

* Fix precision behaviour for zero and negative values ([#234]https://www.github.com/koesterlab/datavzrd/issues/234) ([6b13cda]https://www.github.com/koesterlab/datavzrd/commit/6b13cdac83c005a6b255339b43b3b38a90bd41af)

### [2.5.2]https://www.github.com/koesterlab/datavzrd/compare/v2.5.1...v2.5.2 (2022-10-20)


### Bug Fixes

* Fix precision for non-scientific notation ([#225]https://www.github.com/koesterlab/datavzrd/issues/225) ([9105d77]https://www.github.com/koesterlab/datavzrd/commit/9105d7748f783ff06848b87b494e3ba504cab184)

### [2.5.1]https://www.github.com/koesterlab/datavzrd/compare/v2.5.0...v2.5.1 (2022-10-13)


### Bug Fixes

* Reformat button help text ([66384bf]https://www.github.com/koesterlab/datavzrd/commit/66384bfbc452990bb62341f36f3a9c49ef32cb67)

## [2.5.0]https://www.github.com/koesterlab/datavzrd/compare/v2.4.0...v2.5.0 (2022-10-13)


### Features

* Add ability to export whole table to vega-lite heatmap ([#218]https://www.github.com/koesterlab/datavzrd/issues/218) ([44a9644]https://www.github.com/koesterlab/datavzrd/commit/44a9644e264f8f5ba5b4d5f6e15a49605abc481f)


### Bug Fixes

* Align text marks of heatmap table ([#220]https://www.github.com/koesterlab/datavzrd/issues/220) ([9c7333e]https://www.github.com/koesterlab/datavzrd/commit/9c7333e9a6b2b16250fd7f5bc9eca02f1ed2592c)


### Performance Improvements

* Remove unused data field from heatmap spec ([#221]https://www.github.com/koesterlab/datavzrd/issues/221) ([74e9b4e]https://www.github.com/koesterlab/datavzrd/commit/74e9b4eb6fe873ab79bae6d48f091bcb514b9e91)

## [2.4.0]https://www.github.com/koesterlab/datavzrd/compare/v2.3.2...v2.4.0 (2022-10-11)


### Features

* Add minify_js to decrease file sizes ([#210]https://www.github.com/koesterlab/datavzrd/issues/210) ([7515317]https://www.github.com/koesterlab/datavzrd/commit/7515317e6bcf56df2142b45dce72fe91f0c7341d)
* Add new heatmap option clamp ([#216]https://www.github.com/koesterlab/datavzrd/issues/216) ([7e07df1]https://www.github.com/koesterlab/datavzrd/commit/7e07df111fbe7c17e028212437067e81e46464b9)

### [2.3.2]https://www.github.com/koesterlab/datavzrd/compare/v2.3.1...v2.3.2 (2022-10-10)


### Bug Fixes

* Fix brush filter domain for numeric heatmap plots ([#214]https://www.github.com/koesterlab/datavzrd/issues/214) ([2de96a8]https://www.github.com/koesterlab/datavzrd/commit/2de96a85970588c03431e3363a4b9dd8a8ccd993)

### [2.3.1]https://www.github.com/koesterlab/datavzrd/compare/v2.3.0...v2.3.1 (2022-10-04)


### Bug Fixes

* Deny unknown fields for configs ([#208]https://www.github.com/koesterlab/datavzrd/issues/208) ([7ca295f]https://www.github.com/koesterlab/datavzrd/commit/7ca295f3f5da131b04ec53fe916da13e29319fd4)
* Fix entering of unreachable code when data contains empty columns ([#212]https://www.github.com/koesterlab/datavzrd/issues/212) ([c1df3fa]https://www.github.com/koesterlab/datavzrd/commit/c1df3fa1c0d621720399df2d51e962528eff29df)

## [2.3.0]https://www.github.com/koesterlab/datavzrd/compare/v2.2.0...v2.3.0 (2022-09-28)


### Features

* Align text markers of tick plots ([#203]https://www.github.com/koesterlab/datavzrd/issues/203) ([ca3113d]https://www.github.com/koesterlab/datavzrd/commit/ca3113dd924409dd012f3eca382f4a06ef7696ac)


### Bug Fixes

* Fix column classification for NA values ([#206]https://www.github.com/koesterlab/datavzrd/issues/206) ([f1df6db]https://www.github.com/koesterlab/datavzrd/commit/f1df6db89c50e84c86983848a3274cb2f5c21fc3)
* Fix navbar for tables wider than viewport ([#207]https://www.github.com/koesterlab/datavzrd/issues/207) ([a5cca79]https://www.github.com/koesterlab/datavzrd/commit/a5cca793bed28d2c2e5046454f1765afb8246f9f)

## [2.2.0]https://www.github.com/koesterlab/datavzrd/compare/v2.1.0...v2.2.0 (2022-09-14)


### Features

* Add optional labeling for headers ([#183]https://www.github.com/koesterlab/datavzrd/issues/183) ([731732a]https://www.github.com/koesterlab/datavzrd/commit/731732a1e578181f2949ab2faf0ec57b2700c692)

## [2.1.0]https://www.github.com/koesterlab/datavzrd/compare/v2.0.0...v2.1.0 (2022-09-09)


### Features

* Add precision keyword for displaying numeric values ([#179]https://www.github.com/koesterlab/datavzrd/issues/179) ([a899ff2]https://www.github.com/koesterlab/datavzrd/commit/a899ff212d17e5b21d41cd29bdba729ee4eb77ca)

## [2.0.0]https://www.github.com/koesterlab/datavzrd/compare/v1.19.0...v2.0.0 (2022-09-02)


### ⚠ BREAKING CHANGES

* Add heatmap option for additional headers (#174)
* Rename header-rows setting into headers (#176)

### Features

* Add heatmap option for additional headers ([#174]https://www.github.com/koesterlab/datavzrd/issues/174) ([6f91cd8]https://www.github.com/koesterlab/datavzrd/commit/6f91cd8e8b899228d170dfffb5af3567acc76acc)

## [1.19.0]https://www.github.com/koesterlab/datavzrd/compare/v1.18.1...v1.19.0 (2022-08-24)


### Features

* Add PDF generation for current view ([#171]https://www.github.com/koesterlab/datavzrd/issues/171) ([4f2a4c4]https://www.github.com/koesterlab/datavzrd/commit/4f2a4c45a48824b39aacdf462d351ab6107009b4)
* Allow rendering custom content into any heatmap cell ([#172]https://www.github.com/koesterlab/datavzrd/issues/172) ([8c5ba92]https://www.github.com/koesterlab/datavzrd/commit/8c5ba92453f8fc29a71921fc0b1386e9d017e0d7)

### [1.18.1]https://www.github.com/koesterlab/datavzrd/compare/v1.18.0...v1.18.1 (2022-08-16)


### Bug Fixes

* Show empty values in separate category in histograms ([#166]https://www.github.com/koesterlab/datavzrd/issues/166) ([6780625]https://www.github.com/koesterlab/datavzrd/commit/67806254f0c47bba556feac79e5f1a25e70f58ea)

## [1.18.0]https://www.github.com/koesterlab/datavzrd/compare/v1.17.1...v1.18.0 (2022-08-15)


### Features

* Add new render-html keyword and allow integration of aux-libraries ([#163]https://www.github.com/koesterlab/datavzrd/issues/163) ([9e8dc4e]https://www.github.com/koesterlab/datavzrd/commit/9e8dc4ec808e639750bd1d043c680c47163eabeb)


### Bug Fixes

* Fix test case for html config deserialization ([7512fd4]https://www.github.com/koesterlab/datavzrd/commit/7512fd4f1e9334224c66832b9bd15b8b170fc400)
* Fix usage of page-size for single page views ([#162]https://www.github.com/koesterlab/datavzrd/issues/162) ([648bcd3]https://www.github.com/koesterlab/datavzrd/commit/648bcd346d19ace7a8210fb6bea7e3512a102266)

### [1.17.1]https://www.github.com/koesterlab/datavzrd/compare/v1.17.0...v1.17.1 (2022-08-04)


### Bug Fixes

* Remove detail view when columns are hidden ([#158]https://www.github.com/koesterlab/datavzrd/issues/158) ([ea06cae]https://www.github.com/koesterlab/datavzrd/commit/ea06caee1296b0b4b46b3c02d5fc0284afc5429b)

## [1.17.0]https://www.github.com/koesterlab/datavzrd/compare/v1.16.2...v1.17.0 (2022-06-27)


### Features

* Show tick plots and heatmaps in display-mode: detail ([#150]https://www.github.com/koesterlab/datavzrd/issues/150) ([b7c1dd1]https://www.github.com/koesterlab/datavzrd/commit/b7c1dd140cbfeaa72d70853f3b80c8685b7a747b)
* Support multiple datasets for render-plot views ([#156]https://www.github.com/koesterlab/datavzrd/issues/156) ([1e66ff5]https://www.github.com/koesterlab/datavzrd/commit/1e66ff5b6cb47a5fdfb5a39e22e17cc4cbd11454)


### Bug Fixes

* Fix custom plots in detail mode ([#154]https://www.github.com/koesterlab/datavzrd/issues/154) ([776fc25]https://www.github.com/koesterlab/datavzrd/commit/776fc25e21c65d9ef9b3f356c9b6f6f365a2e48c)

### [1.16.2]https://www.github.com/koesterlab/datavzrd/compare/v1.16.1...v1.16.2 (2022-05-24)


### Bug Fixes

* Fix clear-filter button ([ab3e206]https://www.github.com/koesterlab/datavzrd/commit/ab3e206f749554ddaed586dc200859807080d712)
* Fix cut off dropdown linkouts ([5d785cd]https://www.github.com/koesterlab/datavzrd/commit/5d785cdeeb307aa94f0f632226661d9795399590)

### [1.16.1]https://www.github.com/koesterlab/datavzrd/compare/v1.16.0...v1.16.1 (2022-05-23)


### Bug Fixes

* Fix column highlighting for firefox ([#145]https://www.github.com/koesterlab/datavzrd/issues/145) ([dfdfb58]https://www.github.com/koesterlab/datavzrd/commit/dfdfb589901c3935c3176e6880f3b368abeab6c2)

## [1.16.0]https://www.github.com/koesterlab/datavzrd/compare/v1.15.0...v1.16.0 (2022-05-23)


### Features

* Allow aux-domain-columns for non-numeric column heatmaps ([#141]https://www.github.com/koesterlab/datavzrd/issues/141) ([a4f0c74]https://www.github.com/koesterlab/datavzrd/commit/a4f0c745aa5382cb63a8e8bfd72d64ea7cb32128)
* Always display empty heatmap values in white ([5863fe0]https://www.github.com/koesterlab/datavzrd/commit/5863fe0861e749ec648f3433b6fd687ef8cb1a34)
* Improve view navigation ([#135]https://www.github.com/koesterlab/datavzrd/issues/135) ([2d54e8f]https://www.github.com/koesterlab/datavzrd/commit/2d54e8f618ec8f30ce711e2a44983c36a49ad829)

## [1.15.0]https://www.github.com/koesterlab/datavzrd/compare/v1.14.4...v1.15.0 (2022-05-19)


### Features

* Add new display-mode: hidden ([#140]https://www.github.com/koesterlab/datavzrd/issues/140) ([67e895d]https://www.github.com/koesterlab/datavzrd/commit/67e895d36ee2fb3613dae0a31b34417c7f696a53)
* Improve brush-filters ([#134]https://www.github.com/koesterlab/datavzrd/issues/134) ([b577fe1]https://www.github.com/koesterlab/datavzrd/commit/b577fe1c66a47c1c738ce4f2c295db05846ac4b2)
* Improve detail formatter ([#137]https://www.github.com/koesterlab/datavzrd/issues/137) ([4a30886]https://www.github.com/koesterlab/datavzrd/commit/4a308866390c76decf1986fc62a404e94435dfb3)

### [1.14.4]https://www.github.com/koesterlab/datavzrd/compare/v1.14.3...v1.14.4 (2022-05-18)


### Bug Fixes

* Prevent panic in case of render-table definitions for non-existent columns ([#128]https://www.github.com/koesterlab/datavzrd/issues/128) ([4f40d41]https://www.github.com/koesterlab/datavzrd/commit/4f40d413fb031d413efd5b9845baeed3db5aa6e1)

### [1.14.3]https://www.github.com/koesterlab/datavzrd/compare/v1.14.2...v1.14.3 (2022-05-18)


### Bug Fixes

* Modify table header height to new brush filters ([25a98f4]https://www.github.com/koesterlab/datavzrd/commit/25a98f47be036451e337ac79dd9c8981dce3b52b)

### [1.14.2]https://www.github.com/koesterlab/datavzrd/compare/v1.14.1...v1.14.2 (2022-05-16)


### Bug Fixes

* Include aux domains in filter brush domain ([#126]https://www.github.com/koesterlab/datavzrd/issues/126) ([4157457]https://www.github.com/koesterlab/datavzrd/commit/4157457143a593a224761320c01058a76797d280)
* Include heatmap domains for filter brushes ([#124]https://www.github.com/koesterlab/datavzrd/issues/124) ([2503b30]https://www.github.com/koesterlab/datavzrd/commit/2503b30855dbef6cf9244d3687bcd3f8b5c2e5e4)

### [1.14.1]https://www.github.com/koesterlab/datavzrd/compare/v1.14.0...v1.14.1 (2022-05-11)


### Bug Fixes

* Fix clear filter button ([91d3ab2]https://www.github.com/koesterlab/datavzrd/commit/91d3ab2607dbd4dab9fb1f02080b3fc355b6fcda)

## [1.14.0]https://www.github.com/koesterlab/datavzrd/compare/v1.13.3...v1.14.0 (2022-05-11)


### Features

* Add clear filter button ([4c1d977]https://www.github.com/koesterlab/datavzrd/commit/4c1d9772e38ee706d6f1f4dc3caac81cbf5fd2ca)


### Bug Fixes

* Align headers and filter brushes ([45ecb72]https://www.github.com/koesterlab/datavzrd/commit/45ecb722b7eb53303340286a45057020e61ac575)
* Use derive for default implementation of AuxDomainColumns ([#120]https://www.github.com/koesterlab/datavzrd/issues/120) ([3c546e0]https://www.github.com/koesterlab/datavzrd/commit/3c546e0a54e932aacf8f323c84b6ae3848fd8730)
* Use integers for filter brushes if possible ([24fe4b5]https://www.github.com/koesterlab/datavzrd/commit/24fe4b529fc38ad4321c9c0b9436a819ec94ea1c)
* Use tick domain for filter brush if present ([#119]https://www.github.com/koesterlab/datavzrd/issues/119) ([b4c743e]https://www.github.com/koesterlab/datavzrd/commit/b4c743e37115c6ece694b7b1e475b69ebb41a26c)

### [1.13.3]https://www.github.com/koesterlab/datavzrd/compare/v1.13.2...v1.13.3 (2022-05-11)


### Bug Fixes

* Limit maximum characters in axis labels for brush filters ([#117]https://www.github.com/koesterlab/datavzrd/issues/117) ([504fc75]https://www.github.com/koesterlab/datavzrd/commit/504fc75ea992404f64ee286818dca6993684ca7b)

### [1.13.2]https://www.github.com/koesterlab/datavzrd/compare/v1.13.1...v1.13.2 (2022-05-10)


### Bug Fixes

* Fix brush filter for columns including whitespaces ([#115]https://www.github.com/koesterlab/datavzrd/issues/115) ([3cb2d23]https://www.github.com/koesterlab/datavzrd/commit/3cb2d23bed58b3cff21b088ffb4b092bfcbd4f97)

### [1.13.1]https://www.github.com/koesterlab/datavzrd/compare/v1.13.0...v1.13.1 (2022-05-10)


### Bug Fixes

* Remove debug statement ([9e3790b]https://www.github.com/koesterlab/datavzrd/commit/9e3790ba9f509c71f6e752097b66919d8f47126f)
* Show error messages from config validation properly ([#113]https://www.github.com/koesterlab/datavzrd/issues/113) ([11ca681]https://www.github.com/koesterlab/datavzrd/commit/11ca681d33621c76eafc675d933d6729e91a69d5)

## [1.13.0]https://www.github.com/koesterlab/datavzrd/compare/v1.12.0...v1.13.0 (2022-05-09)


### Features

* Allow usage of regexes for aux-domain-columns ([#111]https://www.github.com/koesterlab/datavzrd/issues/111) ([dc54c85]https://www.github.com/koesterlab/datavzrd/commit/dc54c850fadd09f25295be504b83852b7e74b173)
* Validate given default-view ([#110]https://www.github.com/koesterlab/datavzrd/issues/110) ([fc52714]https://www.github.com/koesterlab/datavzrd/commit/fc5271402d887b3b66635ccb8c0fe7d33fbb491c)

## [1.12.0]https://www.github.com/koesterlab/datavzrd/compare/v1.11.1...v1.12.0 (2022-05-09)


### Features

* New keyword aux-domain-columns ([#108]https://www.github.com/koesterlab/datavzrd/issues/108) ([086f91b]https://www.github.com/koesterlab/datavzrd/commit/086f91b54b454c9899c7e113a23ba4fa1b6e5ef4)

### [1.11.1]https://www.github.com/koesterlab/datavzrd/compare/v1.11.0...v1.11.1 (2022-05-05)


### Bug Fixes

* Remove linkouts from table if non-existent ([#106]https://www.github.com/koesterlab/datavzrd/issues/106) ([9430a78]https://www.github.com/koesterlab/datavzrd/commit/9430a786e7114bda0f997fca8ede42896dee0eaa)

## [1.11.0]https://www.github.com/koesterlab/datavzrd/compare/v1.10.3...v1.11.0 (2022-05-05)


### Features

* Add brush filter for numeric columns ([#103]https://www.github.com/koesterlab/datavzrd/issues/103) ([6f97429]https://www.github.com/koesterlab/datavzrd/commit/6f9742961cc9123e5ee26ab32d85cee02055f24a)

### [1.10.3]https://www.github.com/koesterlab/datavzrd/compare/v1.10.2...v1.10.3 (2022-04-29)


### Bug Fixes

* Activate popovers after page change ([6319230]https://www.github.com/koesterlab/datavzrd/commit/6319230655b8462e897bb0226724868fbfa3cf6c)

### [1.10.2]https://www.github.com/koesterlab/datavzrd/compare/v1.10.1...v1.10.2 (2022-04-29)


### Bug Fixes

* Fix breaking interaction between formatting urls and filtering data ([02e3e5e]https://www.github.com/koesterlab/datavzrd/commit/02e3e5eb628c3e199a79ea5d2f64b12ef3f1fe1d)

### [1.10.1]https://www.github.com/koesterlab/datavzrd/compare/v1.10.0...v1.10.1 (2022-04-29)


### Bug Fixes

* Fix wrong url linking arguments for single page views ([4f14492]https://www.github.com/koesterlab/datavzrd/commit/4f144926c780ca417e875f55fc6bf0ad89b5446b)

## [1.10.0]https://www.github.com/koesterlab/datavzrd/compare/v1.9.0...v1.10.0 (2022-04-29)


### Features

* Allow missing values in other tables with keyword optional ([#98]https://www.github.com/koesterlab/datavzrd/issues/98) ([b0c7920]https://www.github.com/koesterlab/datavzrd/commit/b0c79200dff3eeff92bd60c6b2f1b2becc971d39)
* Single page views for small tables ([#95]https://www.github.com/koesterlab/datavzrd/issues/95) ([ecd7019]https://www.github.com/koesterlab/datavzrd/commit/ecd70198380e0b837632332fb75667b395f76f6c)

## [1.9.0]https://www.github.com/koesterlab/datavzrd/compare/v1.8.0...v1.9.0 (2022-04-13)


### Features

* Allow combining ellipsis with heatmap ([#93]https://www.github.com/koesterlab/datavzrd/issues/93) ([6a7d8a1]https://www.github.com/koesterlab/datavzrd/commit/6a7d8a1f2ecdcbd27bd4a7f3959a611d445c0142)

## [1.8.0]https://www.github.com/koesterlab/datavzrd/compare/v1.7.0...v1.8.0 (2022-04-06)


### Features

* Remove pin-columns keyword ([#91]https://www.github.com/koesterlab/datavzrd/issues/91) ([55aa0f5]https://www.github.com/koesterlab/datavzrd/commit/55aa0f5a0e860874c9281b13f8417da255777e4e)


### Bug Fixes

* fixed linkout button rendering bug ([933dd34]https://www.github.com/koesterlab/datavzrd/commit/933dd34fc2572ade9536b327a121de8b2063be0e)
* tune link button visuals ([becea59]https://www.github.com/koesterlab/datavzrd/commit/becea59de5f915de570daff68aaf47f3212610fc)

## [1.7.0]https://www.github.com/koesterlab/datavzrd/compare/v1.6.0...v1.7.0 (2022-04-06)


### Features

* Style table ([#88]https://www.github.com/koesterlab/datavzrd/issues/88) ([bffa4a3]https://www.github.com/koesterlab/datavzrd/commit/bffa4a36b4387fa023d00f4d4b952dfc6d5f8f8d)
* Validate linkouts ([#87]https://www.github.com/koesterlab/datavzrd/issues/87) ([63a8494]https://www.github.com/koesterlab/datavzrd/commit/63a84945a84a724e3d8bd6cb46a52873c78cffb2)

## [1.6.0]https://www.github.com/koesterlab/datavzrd/compare/v1.5.0...v1.6.0 (2022-04-06)


### Features

* Add config validation ([#80]https://www.github.com/koesterlab/datavzrd/issues/80) ([fd094a3]https://www.github.com/koesterlab/datavzrd/commit/fd094a366d31f55327de6a5a7d8e7cc4c020c5d3)
* Add new keyword hidden ([#83]https://www.github.com/koesterlab/datavzrd/issues/83) ([1e93444]https://www.github.com/koesterlab/datavzrd/commit/1e934442fb8de432e742d6b8bd5185b4daaab3c5)
* Resize linkout buttons ([#85]https://www.github.com/koesterlab/datavzrd/issues/85) ([db89115]https://www.github.com/koesterlab/datavzrd/commit/db89115597d94299f5048f6d68a8c05bd06dc637)
* Resize tick plots ([#84]https://www.github.com/koesterlab/datavzrd/issues/84) ([700c0b7]https://www.github.com/koesterlab/datavzrd/commit/700c0b7b5fb0c3985fa0ba781850fe271044d89c)
* Validate plot scale types ([#86]https://www.github.com/koesterlab/datavzrd/issues/86) ([4d79364]https://www.github.com/koesterlab/datavzrd/commit/4d79364b186080af6d8c4de30532a1055ff2ce03)

## [1.5.0]https://www.github.com/koesterlab/datavzrd/compare/v1.4.1...v1.5.0 (2022-04-04)


### Features

* Add ellipsis keyword ([#78]https://www.github.com/koesterlab/datavzrd/issues/78) ([1b5757e]https://www.github.com/koesterlab/datavzrd/commit/1b5757ec9726608b08c4496084136a3d482da258)

### [1.4.1]https://www.github.com/koesterlab/datavzrd/compare/v1.4.0...v1.4.1 (2022-03-29)


### Bug Fixes

* Do not show empty tick plots ([#76]https://www.github.com/koesterlab/datavzrd/issues/76) ([85d2721]https://www.github.com/koesterlab/datavzrd/commit/85d27219986741575f02b01ad8f998977a4455a2)

## [1.4.0]https://www.github.com/koesterlab/datavzrd/compare/v1.3.1...v1.4.0 (2022-03-29)


### Features

* Add default-view keyword ([#73]https://www.github.com/koesterlab/datavzrd/issues/73) ([8ae2bc6]https://www.github.com/koesterlab/datavzrd/commit/8ae2bc6dc1fbc9aab372a69256ae6e80a4dce8b9)
* Remove hovering from table ([#75]https://www.github.com/koesterlab/datavzrd/issues/75) ([224cfd0]https://www.github.com/koesterlab/datavzrd/commit/224cfd067ee3f1844069798ed2e3fc099c883a0d)

### [1.3.1]https://www.github.com/koesterlab/datavzrd/compare/v1.3.0...v1.3.1 (2022-03-26)


### Bug Fixes

* Missing columns when in detail mode for link-url ([#71]https://www.github.com/koesterlab/datavzrd/issues/71) ([24223c5]https://www.github.com/koesterlab/datavzrd/commit/24223c553a5346b2caa7ab84c04662478e1e9df8)
* Show custom plots in detail view ([#70]https://www.github.com/koesterlab/datavzrd/issues/70) ([e8c5075]https://www.github.com/koesterlab/datavzrd/commit/e8c50750c0aae6160a31fdc59a0a5e65d286588a)

## [1.3.0]https://www.github.com/koesterlab/datavzrd/compare/v1.2.2...v1.3.0 (2022-03-25)


### Features

* support for regular expressions to match column names ([#65]https://www.github.com/koesterlab/datavzrd/issues/65) ([542fe4a]https://www.github.com/koesterlab/datavzrd/commit/542fe4a7dcf48a33496abf970eda72d11641febe)


### Bug Fixes

* Adjust header height to content ([8f7f5ba]https://www.github.com/koesterlab/datavzrd/commit/8f7f5ba20678e9183959defe891f6249af80e5c6)
* Highlight rows with border so it doesn't interfere with heatmaps ([#67]https://www.github.com/koesterlab/datavzrd/issues/67) ([29e310c]https://www.github.com/koesterlab/datavzrd/commit/29e310ca3ae250ab628aea30313637beb9bd8fa4)
* Improve error message for missing columns without optional: true ([#63]https://www.github.com/koesterlab/datavzrd/issues/63) ([3517b3e]https://www.github.com/koesterlab/datavzrd/commit/3517b3e3fde18f4418c8d3ab3ad5c3ef8bd92a1a)
* No linebreaks in numeric cells ([#62]https://www.github.com/koesterlab/datavzrd/issues/62) ([3d59973]https://www.github.com/koesterlab/datavzrd/commit/3d59973f049f23c28353da05fa98ee0c67b072c9)
* Remove ellipsis from datavzrd ([#64]https://www.github.com/koesterlab/datavzrd/issues/64) ([89916d1]https://www.github.com/koesterlab/datavzrd/commit/89916d128301b47bcc3fecbab47ce48c384c1329)

### [1.2.2]https://www.github.com/koesterlab/datavzrd/compare/v1.2.1...v1.2.2 (2022-03-23)


### Bug Fixes

* Adjust header height to content ([#59]https://www.github.com/koesterlab/datavzrd/issues/59) ([d5307c1]https://www.github.com/koesterlab/datavzrd/commit/d5307c17d988cbc4839c0aefff0bf538f75612f4)

### [1.2.1]https://www.github.com/koesterlab/datavzrd/compare/v1.2.0...v1.2.1 (2022-03-22)


### Bug Fixes

* Do not require empty data for plots ([#56]https://www.github.com/koesterlab/datavzrd/issues/56) ([e420a8a]https://www.github.com/koesterlab/datavzrd/commit/e420a8a96dd35a463064ce9067e575f665deb727)
* Fix empty files with linkouts ([#54]https://www.github.com/koesterlab/datavzrd/issues/54) ([63b527a]https://www.github.com/koesterlab/datavzrd/commit/63b527ad4b6fed84293c028d9c77cf85f8e87580)
* Fix example config ([#55]https://www.github.com/koesterlab/datavzrd/issues/55) ([2da1706]https://www.github.com/koesterlab/datavzrd/commit/2da1706738864b386fe07ffe93f0d024d8679d45)

## [1.2.0]https://www.github.com/koesterlab/datavzrd/compare/v1.1.0...v1.2.0 (2022-03-22)


### Features

* New keyword display-mode ([#51]https://www.github.com/koesterlab/datavzrd/issues/51) ([cabba0e]https://www.github.com/koesterlab/datavzrd/commit/cabba0e1ff68e9b9cdef92b6ad85d73824fa90a6)


### Performance Improvements

* Render plots via javascript ([#53]https://www.github.com/koesterlab/datavzrd/issues/53) ([e87fe98]https://www.github.com/koesterlab/datavzrd/commit/e87fe9829b7bd8342f9006e9e9bdc19d0d03df8d)

## [1.1.0]https://www.github.com/koesterlab/datavzrd/compare/v1.0.2...v1.1.0 (2022-03-16)


### ⚠ BREAKING CHANGES

* Refactor item to view (#46)

### Features

* Add domain keyword for ticks and heatmap ([#41]https://www.github.com/koesterlab/datavzrd/issues/41) ([843b7b5]https://www.github.com/koesterlab/datavzrd/commit/843b7b5b7b43c625341d826688c51856372438fa)
* Add optional keyword for render-table ([#43]https://www.github.com/koesterlab/datavzrd/issues/43) ([6d245d1]https://www.github.com/koesterlab/datavzrd/commit/6d245d1436423f7e877e62d3140084cbe3906835)
* Make entire row available to link-to-url ([#44]https://www.github.com/koesterlab/datavzrd/issues/44) ([2f1e87f]https://www.github.com/koesterlab/datavzrd/commit/2f1e87fcac736c5ee9af0af38947473497adc632)
* New keyword spec-path ([#48]https://www.github.com/koesterlab/datavzrd/issues/48) ([726868d]https://www.github.com/koesterlab/datavzrd/commit/726868df47fc279f07bc4b0bd2b6cdec532b95ce)


### Bug Fixes

* Fix broken plots for headers with whitespaces ([#40]https://www.github.com/koesterlab/datavzrd/issues/40) ([7bb9b59]https://www.github.com/koesterlab/datavzrd/commit/7bb9b596e49a671071bb2460d80bd3815c049585)


### Code Refactoring

* Refactor item to view ([#46]https://www.github.com/koesterlab/datavzrd/issues/46) ([1d86341]https://www.github.com/koesterlab/datavzrd/commit/1d86341f0564e5350b05cfd9f30c6eff70524aed)


### Miscellaneous Chores

* release 1.1.0 ([9c111f3]https://www.github.com/koesterlab/datavzrd/commit/9c111f369da24073c47466020e38e18f5bda8b83)

### [1.0.2]https://www.github.com/koesterlab/datavzrd/compare/v1.0.1...v1.0.2 (2022-03-10)


### Bug Fixes

* Fix custom plots ([075688a]https://www.github.com/koesterlab/datavzrd/commit/075688a4db07a929fc88928e422be2d34e8b33bc)

### [1.0.1]https://www.github.com/koesterlab/datavzrd/compare/v1.0.0...v1.0.1 (2022-03-09)


### Bug Fixes

* Fix example config ([d280358]https://www.github.com/koesterlab/datavzrd/commit/d280358dc94d0048a2f5ea216007da9695d99bad)
* No error for empty csv files ([#37]https://www.github.com/koesterlab/datavzrd/issues/37) ([ce6ea18]https://www.github.com/koesterlab/datavzrd/commit/ce6ea187a6be70634c20ffb3a9d27761153b2054)
* use smaller font sizes and less padding ([#34]https://www.github.com/koesterlab/datavzrd/issues/34) ([7f17009]https://www.github.com/koesterlab/datavzrd/commit/7f170099f3a50b230e21d44d991ecc341559acf7)

## [1.0.0]https://www.github.com/koesterlab/datavzrd/compare/v0.3.0...v1.0.0 (2022-02-21)


### ⚠ BREAKING CHANGES

* Rename schema to spec and scheme to color-scheme (#31)

### Code Refactoring

* Rename schema to spec and scheme to color-scheme ([#31]https://www.github.com/koesterlab/datavzrd/issues/31) ([b9fca5f]https://www.github.com/koesterlab/datavzrd/commit/b9fca5f2cb6b145b55527bef2eed95c1359ef467)

## [0.3.0]https://www.github.com/koesterlab/datavzrd/compare/v0.2.0...v0.3.0 (2022-02-18)


### Features

* Allow user to use width: container in vega-lite specs ([#30]https://www.github.com/koesterlab/datavzrd/issues/30) ([c65693b]https://www.github.com/koesterlab/datavzrd/commit/c65693b12c51dcb9d63466172776d2348c4ecabd)
* Create output directory if it does not exist ([#27]https://www.github.com/koesterlab/datavzrd/issues/27) ([08eafbe]https://www.github.com/koesterlab/datavzrd/commit/08eafbe671c78ee7b88413194b2f8e2982b696d9)


### Bug Fixes

* Minor cosmetic changes ([#29]https://www.github.com/koesterlab/datavzrd/issues/29) ([e813018]https://www.github.com/koesterlab/datavzrd/commit/e813018a09cc45375109ce78f1fbe6b54879c435)

## [0.2.0]https://www.github.com/koesterlab/datavzrd/compare/v0.1.2...v0.2.0 (2022-02-16)


### Features

* Add example report ([#21]https://www.github.com/koesterlab/datavzrd/issues/21) ([4e266a0]https://www.github.com/koesterlab/datavzrd/commit/4e266a09f3bfa0250604ca67e8531022a8ac8ced)
* Show proper error message for non existing output directory ([#26]https://www.github.com/koesterlab/datavzrd/issues/26) ([008524f]https://www.github.com/koesterlab/datavzrd/commit/008524f2748fe37cece68fe65700e2deda13bcb2)
* Show proper error message for wrong file paths ([#25]https://www.github.com/koesterlab/datavzrd/issues/25) ([c0e7539]https://www.github.com/koesterlab/datavzrd/commit/c0e75396cfa08e9c9745b79acdaf5a618632d318)


### Bug Fixes

* Complete error message for wrong config file path ([#24]https://www.github.com/koesterlab/datavzrd/issues/24) ([b0dc4aa]https://www.github.com/koesterlab/datavzrd/commit/b0dc4aa8b568a555a70e2b48e9bf57da4c1149c8)

### [0.1.2]https://www.github.com/koesterlab/datavzrd/compare/v0.1.1...v0.1.2 (2022-02-15)


### Bug Fixes

* add missing license ([a0a3473]https://www.github.com/koesterlab/datavzrd/commit/a0a34735ca044033f42b72b7cbe975ea9e1357e9)
* Display correct column on missing value ([#19]https://www.github.com/koesterlab/datavzrd/issues/19) ([bacbe5b]https://www.github.com/koesterlab/datavzrd/commit/bacbe5b8819b54990a4243fe3b24342ee581f870)

### [0.1.1]https://www.github.com/koesterlab/datavzrd/compare/v0.1.0...v0.1.1 (2022-02-15)


### Bug Fixes

* updated release process ([e8463f7]https://www.github.com/koesterlab/datavzrd/commit/e8463f7db8d946898a36f5d7001984515322ad1c)

## 0.1.0 (2022-02-15)


### Features

* Add heatmap keyword ([#12]https://www.github.com/koesterlab/datavzrd/issues/12) ([d8e3582]https://www.github.com/koesterlab/datavzrd/commit/d8e35822b4d63a78b81a5e1e8344d0259006fcf6)
* add infrastructure for column index and row address ([#1]https://www.github.com/koesterlab/datavzrd/issues/1) ([7df380c]https://www.github.com/koesterlab/datavzrd/commit/7df380c11f07bf48b199de5c67448ae053435d54)
* Add optional description for tables ([#8]https://www.github.com/koesterlab/datavzrd/issues/8) ([3a6dcf6]https://www.github.com/koesterlab/datavzrd/commit/3a6dcf6f00979bdd771cb11b68ef450b7bd169c9)
* Add optional report name ([#15]https://www.github.com/koesterlab/datavzrd/issues/15) ([aa2713a]https://www.github.com/koesterlab/datavzrd/commit/aa2713a7c9266dadd91ced8f8e8346990ad57cb1)
* Add pin-columns keyword ([#16]https://www.github.com/koesterlab/datavzrd/issues/16) ([8869e57]https://www.github.com/koesterlab/datavzrd/commit/8869e57625df8bcc4c64504568a545da69dee155)
* Add tick plots ([#10]https://www.github.com/koesterlab/datavzrd/issues/10) ([4b87407]https://www.github.com/koesterlab/datavzrd/commit/4b874079045919379175b36a489093d4fa2ec6e1)
* Add vega-controls option ([#11]https://www.github.com/koesterlab/datavzrd/issues/11) ([9adeebb]https://www.github.com/koesterlab/datavzrd/commit/9adeebb108060cc1c876cae3f1b59f174ef605c9)
* Allow multiple header rows ([#6]https://www.github.com/koesterlab/datavzrd/issues/6) ([79b7e38]https://www.github.com/koesterlab/datavzrd/commit/79b7e38a8b1d8e2871674947d0e45bd20b3791e2)
* Autofocus input in search dialog ([#14]https://www.github.com/koesterlab/datavzrd/issues/14) ([9cf8a66]https://www.github.com/koesterlab/datavzrd/commit/9cf8a661057a667b4f3e235b4fd264ea2164e818)
* Don't show unreasonable plots ([#7]https://www.github.com/koesterlab/datavzrd/issues/7) ([983d333]https://www.github.com/koesterlab/datavzrd/commit/983d3332cd751316b9828ef36bbce87b19e62a29)
* Let user access columns in config via index ([c9885b5]https://www.github.com/koesterlab/datavzrd/commit/c9885b5572e1c56a00086837f2b2106134907c93)
* Restructure config and add plot items ([#13]https://www.github.com/koesterlab/datavzrd/issues/13) ([a3fe4c5]https://www.github.com/koesterlab/datavzrd/commit/a3fe4c557e0c536db282f4516956b5c573eb9e91)
* Support custom plots ([#9]https://www.github.com/koesterlab/datavzrd/issues/9) ([7a57824]https://www.github.com/koesterlab/datavzrd/commit/7a5782484cd470b78ced9529bfac959db7252c21)