Currently i am using yFiles Flex to generate diagrams and graphs for clients with Java back-end. I have to migrate my project to the yFiles HTML. Is it possible?
Yfiles diagrams migration from flash to html5?
182 Views Asked by Ess At
1
There are 1 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in FLASH
- Failing write/read on RH850 with NOR flash
- Unique ID to transfer guest account data from Adobe AIR to Unity
- flashplayer_32_sa: SecurityError: Error #2028: Local-with-filesystem SWF file
- what is the simplest way and what applications to use in making an exe file that runs .swf file assetss
- Does a physical filesystem works only for a specific type of storage media?
- when I try to enable flash encryption in esp32, the bootloader size is large . But I'm unable to find bootloader field in partition table
- Manage FIFO implemented in a non-volatile flash NOR memory
- create a quiz with actionscript 3
- How to connect two x16 nor flash to nor flash controller?
- Looping in Adobe Flash Professional CS6
- AOSP flahed to android emulator
- How do I compile Flash app files with mxml and as extensions?
- Winbond W25Q01 (1G-BIT) Flash erases 256-bytes not 4K and fails write-read-verify after address 0x07000000
- On Pixel 7a Android AOSP
- Defer implementation of interface functions to child class
Related Questions in YFILES
- Including CSS elements in yfiles SvgExport
- yFiles graphs not rendering in server side while using in Angular Universal
- how can i increment an (x,y) value for a graph location
- Tooltip artifacts using Angular ComponentFactory
- How to catch/forward MouseWheel event to several objects?
- Large Graph is cropping from bottom in the overview Component in Yfiles
- How to Integrate/use yFiles for Html BPMN editor in React frontend to edit bpmn diagrams?
- Cannot create an instance of an abstract class in angular but in JS is working fine
- Unable to find package location when creating application using yfiles-application generator
- Cytoscape.js Yfiles orthogonal edges
- '$with' in JavaScript is migrated to TypeScript
- Migrating JavaScript to TypeScript
- IntelliJ UML diagrams to PNG using Maven plugin
- Deserializing JavaFX properties with yWorks and Java Reflection API
- Angular 2 Yfiles for HTML - OrthogonalEdgeEditingContext
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
(Note: Short answer because you included literally no detail at all. Please contact the yWorks support team at the e-mail address noted in the readme and mention a bit more about what features you're using so far so that we can help you better.)
Yes, it's possible. I suspect you're currently using a Java server component generating GraphML for a client that's currently using yFiles FLEX and want to migrate the client solution to yFiles for HTML.
Generally you might want to consider a different format for exchanging the graphs between server and client, as the GraphML dialects of yFiles for Java, yFiles FLEX, and yFiles for HTML are not compatible (the graph structure survives, but style and placement information does not). Often a simple JSON format is easier to work with in yFiles for HTML if not all bells and whistles of GraphML are needed. yFiles for HTML may also already be capable of running your layouts directly on the client which might make a server component (just for layout) obsolete as well. Performance is adequate to very good in current browsers unless you have very large graphs.
The API of yFiles for HTML is similar to yFiles FLEX, although the two products are from very different times by now, so there have been extensive changes. Depending on how much customization you have migrating the code may take a while. But generally there should be nothing that's impossible to replicate in yFiles for HTML.