Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic FlowChartX V4.9.6 released! (Read 2029 times)
Forum Admin
YaBB Administrator
*****
Offline


Rock and Roll

Posts: 720
Joined: Apr 6th, 2003
FlowChartX V4.9.6 released!
Jul 24th, 2020 at 2:18pm
Print Post  
We have released version 4.9.6 of FlowChartX. It contains the following new features and improvements:

Registration free deployment
Distribution now includes manifest files for side-by-side / registration free deployment. MindFusion.Diagramming.32bit.manifest describes the 32-bit version of the component, and MindFusion.Diagramming.64bit.manifest describes the 64-bit version. To load the component without registering it, add a dependentAssembly entry to your application's manifest:

Code
Select All
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity
     version="1.0.0.0"
     processorArchitecture="*"
     name="app.exe"
     type="win32"
  />
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="MindFusion.Diagramming.32bit"
        version="4.9.6.0"
        processorArchitecture="x86"
        language="*"
      />
    </dependentAssembly>
 </dependency>
</assembly>
 



PNG support
The LoadPicture method can load png images, both in classic and GDI+ graphics modes.

Layout improvements
  • TreeLayout can arrange multiple trees.
  • Designate arrows as loop-back links in TreeLayout or DecisionLayout by setting ltGeneralLoop flag in LayoutTraits.
  • Improved handling of grouped nodes by automatic layout.
  • KeepGroupLayout property now available in all layout classes.
  • Set the raWhileModifying flag in TriggerRerouting to re-route arrows while their incident nodes are moved or resized.

Miscellaneous
  • Scrollable Table nodes can now display full scrollbars instead of up/down scroll buttons in caption bar. To enable this, set the TableScrollUI property to uiScrollbars.
  • AlignmentGuideWidth property lets you set width of alignment guides.

Installer for the latest version can be downloaded here, or from the clients area on our site.
https://www.mindfusion.eu/FCXdemoPro.zip

Enjoy!
« Last Edit: Nov 30th, 2020 at 1:08pm by Forum Admin »  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint