assembled with blockbuilder.org
Simple example combining react-virtualized with react-sparklines because I could not find any. Most of this code comes from the react-virtualized
table example with minor modifications to add a cellRenderer
for the sparklines.
Thanks so much to:
react-virtualized
xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>foo</title>
<style type="text/css">
body, html, #mount {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="mount"></div>
<script src="utils.js"></script>
<script src="helper.js"></script>
<script>
loadReact();
loadScriptsAndStyles('table_sparkline.js');
loadScript('https://unpkg.com/react-sparklines');
</script>
</body>
</html>