Skip to content

v2.6.38

Compare
Choose a tag to compare
@graphieros graphieros released this 13 Apr 15:42
· 109 commits to master since this release

VueUiHeatmap

Add optional row and column totals, with colors.

image

New config attributes

const config = ref({
  style: {
    layout: {
      cells: {
        rowTotal: {
          value: {
            show: true, // default: false
          },
          color: {
            show: true, // default: false
          }
        },
        columnTotal: {
          value: {
            show: true, // default: false
            rotation: 0, // default: 0
            offsetX: 0, // default: 0
            offsetY: 0, // default: 0
          },
          color: {
            show: true, // default: false
          }
        }
      }
    }
  }
})

Docs are up to date, as well as the chart builder.