Skip to content

Commit 9208cc3

Browse files
committed
- factored out brushing
- replaced d3.svg.brush with our own implementation supporting multiple selections - eliminated non-brush related logic from axisbrush.js for eventual reusability - general code improvements in areas that were in attention
1 parent f459723 commit 9208cc3

File tree

6 files changed

+637
-216
lines changed

6 files changed

+637
-216
lines changed

src/traces/parcoords/attributes.js

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,22 @@ module.exports = {
8080
valType: 'info_array',
8181
role: 'info',
8282
items: [
83-
{valType: 'number', editType: 'calc'},
84-
{valType: 'number', editType: 'calc'}
83+
{
84+
valType: 'info_array',
85+
editType: 'calc',
86+
items: [
87+
{valType: 'number', editType: 'calc'},
88+
{valType: 'number', editType: 'calc'}
89+
]
90+
},
91+
{
92+
valType: 'info_array',
93+
editType: 'calc',
94+
items: [
95+
{valType: 'number', editType: 'calc'},
96+
{valType: 'number', editType: 'calc'}
97+
]
98+
}
8599
],
86100
editType: 'calc',
87101
description: [

0 commit comments

Comments
 (0)