rawgraphs / rawgraphs-charts

A curated selection of charts provided through RAWGraphs interface
https://rawgraphs.io/
Apache License 2.0
95 stars 42 forks source link

Charts categories #13

Closed iosonosempreio closed 3 years ago

iosonosempreio commented 4 years ago

Specify charts categories. Now all charts have the category "dispersion".

mikima commented 4 years ago

Prepared charts categories, but they should be correclty parsed in the interface as array and not as strings

iosonosempreio commented 4 years ago

Update category metadata. Make it a strings array.

Currently on master branch:

import icon from './matrixplot.svg'
import thumbnail from './heatmap_thumb.svg'

export const metadata = {
  name: 'Matrix Plot',
  thumbnail,
  icon,
  category: 'Network',
  description:
    'It allows comparison of two categorical dimensions, disposing them on the horizontal and vertical axes. Each glyph (square or circle) represents a possible correlation among the two dimensions. Associated quantitative variables can be represented with size and/or color.'
}

@mikima