Skip to content

Commit

Permalink
feat: New "heatmap" chart type
Browse files Browse the repository at this point in the history
  • Loading branch information
frievoe97 authored and billyc committed Nov 24, 2021
1 parent ad5f648 commit c15b21f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/charts/heatmap.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template lang="pug">
vue-plotly(:data="data" :layout="layout" :options="options" :config="{responsive: true}" :class="className")
vue-plotly(:data="data" :layout="layout" :options="options" :config="{responsive: true}")

</template>

Expand Down Expand Up @@ -73,7 +73,6 @@ export default class VueComponent extends Vue {
// Reads all the data of the x-axis.
for (const [key, value] of Object.entries(this.dataRows[0])) {
console.log(this.dataRows[0])
if (this.config.columns.includes(key)) {
xaxis.push(key)
}
Expand Down

0 comments on commit c15b21f

Please sign in to comment.