Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic pathgradientBrush or radialgradientbrush (Read 3318 times)
hans
Junior Member
**
Offline


I Love MindFusion!

Posts: 81
Location: Netherlands
Joined: Mar 17th, 2012
pathgradientBrush or radialgradientbrush
Feb 12th, 2013 at 4:31pm
Print Post  
Does canvas-diagram support PathGradientBrush or RadialGradientBrush  for setBackBrush() ?
The help shows:
var gradientBrush = { type: "LinearGradientBrush", color1: "green", color2: "white", angle: 30 };
Is there any documentation on how to create other gradientBrushes?
When I try this the diagram does not generate an eroor, but the backcolor turns black:
var gradientBrush = { type: "RadialGradientBrush", color1: "green", color2: "white" };
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: pathgradientBrush or radialgradientbrush
Reply #1 - Feb 12th, 2013 at 7:10pm
Print Post  
They are not supported at this time.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: pathgradientBrush or radialgradientbrush
Reply #2 - Feb 15th, 2013 at 12:30pm
Print Post  
This version lets you use radial gradients:
https://mindfusion.eu/_beta/jsdiag_radial.zip

For example:
Code
Select All
var brush1 = { type: "RadialGradientBrush", color1: '#8ED6FF', color2: '#004CB3' };

var brush2 ...
brush2.colorStops = [
  { position: 0, color: 'red'},
  { position: 0.5, color: 'blue' },
  { position: 1, color: 'green' },
] 



We'll implement some conversion between them and .NET's path graidents for the NetDiagram 5 release.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: pathgradientBrush or radialgradientbrush
Reply #3 - Feb 20th, 2013 at 12:26pm
Print Post  
We have uploaded a new beta build that converts from .NET PathGradient brushes to canvas radial brushes:
https://mindfusion.eu/_beta/NetDiagram5.zip

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint