@alice wrote:
I look forward to receiving your feedback.
Is possible binding "toArrow" in Shape?
or Any ideas for change toArrow in Shape?before
$(go.Shape,
{
toArrow: 'Standard',
fromArrow: '',
stroke: '#999',
fill: '#999'
}
)change source (not binding)
$(go.Shape,
{
stroke: '#999',
fill: '#999'
},
new go.Binding("toArrow", "toArrow"),
new go.Binding("fromArrow", "fromArrow")
)
....
linkArray.push({
from: pkey,
to: key,
toArrow: '',
fromArrow: 'Backward'
});
Posts: 3
Participants: 2