# Sketchify **Repository Path**: JiangBeiQingYi/Sketchify ## Basic Information - **Project Name**: Sketchify - **Description**: Sketchify是一个js工具,可将任何包含SVG图形的DOM元素转换为手绘风格的效果 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/sketchify - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2019-11-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

turns svg graph into sketchy

# Sketchify Sketchify is a js tool that turns svg graph into sketchy visualization. It is based on [Rough.js](https://github.com/pshihn/rough) ### Build ```sh npm install npm run build ``` ### Usage To turn an existing graph that composed by svg into sketch mode. Run following code: ```javascript const option = { fillStyle: 'hachure', roughness: 1, bowing: 1, chartType: 'highcharts', }; // container is the root dom element that contains related graph svg const handler = Sketchifier(container, option); handler.handify(); // call restore will turn the graph back to original one handler.restore(); ``` Refer to [roughjs api document](https://github.com/pshihn/rough/wiki) for options of `fillStyle`, `roughness` and `bowing`. ### demo ![](./docs/highcharts_demo.png) There are 5 demo charts types: - [ECharts](https://echarts.apache.org/zh/index.html) - [AntV G2](https://antv.alipay.com/zh-cn/g2/3.x/index.html) - [highcharts](https://www.highcharts.com/) - [amcharts](https://www.amcharts.com/) - [xCharts](http://xgfe.github.io/xCharts/) After `npm run build-dev`, open related html file in `demo` folder will show you the demo. Or you can refer to following codepen pages: - [ECharts](https://codepen.io/gangtao/full/ZEEVzpw) - [AntV G2](https://codepen.io/gangtao/full/wvvRwzp) - [highcharts](https://codepen.io/gangtao/full/eYYrpBX) - [amcharts](https://codepen.io/gangtao/full/PooxBpV) - [xCharts](https://codepen.io/gangtao/full/PooxBWV) ### new chart type support Sketchify is high generalized, now I have tried to support most chart types in highcharts and xCharts, the customization is to filter some svg element that does not need to sketchify. Adding a blacklist of related element class. In case you want to do something similar, refer to [highcharts.js](./src/highcharts.js)