Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec98314793 | ||
|
|
0953911571 | ||
|
|
0a673631b2 | ||
|
|
b1ade90e8b | ||
|
|
c088774e75 | ||
|
|
7d6bd5696a | ||
|
|
11f2bad2bd | ||
|
|
06a28a2ae7 | ||
|
|
15be850423 |
@@ -31,6 +31,9 @@ The measures are optional
|
||||
QVF based on characters from Victor Hugo's novel , Les Misérables.
|
||||

|
||||
|
||||
### Data Limit
|
||||
Starts having issues stabilizing(transforming into untangled view) at around 100-200 nodes depending on dataset.
|
||||
|
||||
|
||||
# Getting Started
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ Use at your own risk.
|
||||
*/
|
||||
import "@babel/polyfill";
|
||||
import paint from './paint';
|
||||
import './styles/main.less';
|
||||
|
||||
const component = {
|
||||
initialProperties: {
|
||||
|
||||
@@ -20,10 +20,10 @@ function paint ( $element, layout, qTheme, component ) {
|
||||
id = layout.qInfo.qId,
|
||||
containerId = 'network-container_' + id;
|
||||
|
||||
|
||||
if(qData && qData.qMatrix) {
|
||||
$element.empty().append($('<div />')
|
||||
.attr({ id: containerId })
|
||||
.toggleClass('is-edit-mode', _this.inEditState())
|
||||
.css({
|
||||
height: $element.height(),
|
||||
width: $element.width(),
|
||||
|
||||
3
src/styles/main.less
Normal file
3
src/styles/main.less
Normal file
@@ -0,0 +1,3 @@
|
||||
.is-edit-mode > div {
|
||||
pointer-events: none;
|
||||
}
|
||||
Reference in New Issue
Block a user