Hello, how can I set text color, some effect like this?
https://www.jasondavies.com/wordcloud/
I am trying this library as it has no other dependencies, thanks.
Test data I used:
vm.data = [
{text: 'AngularJS', weight: 25, color: '#6d989e'},
{text: 'Redux', weight: 22, color: '#f00'},
{text: 'React Native', weight: 25, color: '#f90'},
{text: 'D3.js', weight: 25, color: '#00f'},
{text: 'Vue.js', weight: 35, color: 'steelblue'},
{text: 'React.js', weight: 25, color: '#6d989e'},
{text: 'Angular2', weight: 35, color: '#473fa3'}
];
Hello, how can I set text color, some effect like this?
https://www.jasondavies.com/wordcloud/
I am trying this library as it has no other dependencies, thanks.
Test data I used: