Тёмный
MindFusion
MindFusion
MindFusion
Подписаться
Welcome to MindFusion RU-vid channel. Here you can find videos that describe useful features of our components and provide how-to guides on popular topics about programming the tools.
Building a TreeMap Chart in Pure JavaScript
13:46
3 месяца назад
Interactive Org Chart in JavaScript (Updated)
12:57
7 месяцев назад
Football Tower Chart in JavaScript
11:10
2 года назад
Комментарии
@elarvis
@elarvis 3 месяца назад
Saw the thumbnail, went away, made my own treemap in javascript ( took around an hour :D, because I haven't slept ). This is a nice programming challenge, the math isn't that complicated but you have to actually think about it, you can't just program nonstop and make it.
@aminullahyousufi8142
@aminullahyousufi8142 3 месяца назад
Hello, thanks for your explaination. Even i have written the same code, i can not drag and drop the elements. what is the possible solution?
@MindfusionEu
@MindfusionEu 3 месяца назад
Hi, The code in the sample uses an API, which was changed through the 3 years since it was published. You can download the trial version of the diagramming library from mindfusion.eu/javascript-diagram.html and when you extract it, there is Samples\React\JavaScript\src where you can look at the Controls.js file, which renders a diagram together with the NodeListView, Zoom and Overview controls. We have uploaded an updated sample archive for this video.
@ivanlebedev009
@ivanlebedev009 3 месяца назад
Super! what I was looking for and already wanted to write myself. You saved me a lot of time!
@MindfusionEu
@MindfusionEu 3 месяца назад
Thank you!
@Nidhin844
@Nidhin844 5 месяцев назад
Is there any way to link the shapes to a code block which takes variable like a function. And arc can be used to connect functions to one another in real time?
@MindfusionEu
@MindfusionEu 5 месяцев назад
Sure, take a look at the "Scripting" sample from this page: mindfusion.eu/products/winforms/diagramming/samples The "JavaScript Parser" sample could also be of interest to you. In case you have specific questions, please use MindFusion forum: mindfusion.eu/Forum/YaBB.pl
@ayoubmoussaoui97
@ayoubmoussaoui97 6 месяцев назад
Com.mindfusion.sheduling.calendar Erreur in eclipse Solutions
@youcefboukezzata745
@youcefboukezzata745 7 месяцев назад
the code source link isn't working. could you please send me the code?
@MindfusionEu
@MindfusionEu 7 месяцев назад
It is now working, we did a quick update of the archives to use the new versions of the libraries.
@luispernalete8165
@luispernalete8165 7 месяцев назад
some repository github?
@MindfusionEu
@MindfusionEu 7 месяцев назад
Sure, github.com/MindFusionComponents
@maqay
@maqay 8 месяцев назад
Excelent demo, I tryed, Buț I can't move process or objects, it is posible move them?
@MindfusionEu
@MindfusionEu 8 месяцев назад
Thank you. Can you check if there are errors in the console? Besides errors, a diagram item could be locked ( www.mindfusion.eu/onlinehelp/jsdiagram/P_MindFusion_Diagramming_DiagramItem_locked_0_1.htm ) or the Behavior property ( www.mindfusion.eu/onlinehelp/jsdiagram/P_MindFusion_Diagramming_DiagramView_behavior_0.htm ) could be set to the wrong value. The live sample and the zip that is available for download - links in the description - work fine.
@furkandemirbas8027
@furkandemirbas8027 9 месяцев назад
Hi, Thanks for everthing. I received that error 'Cannot convert from 'MindFusion.Drawing.Brush' to 'System.Collections.Generic.List<MindFusion.Drawing.Brush>' when defining the PerSeriesStyle. Do u have any suggest?
@ilyafarazmehr4564
@ilyafarazmehr4564 6 месяцев назад
Have you found an answer?
@furkandemirbas8027
@furkandemirbas8027 6 месяцев назад
​@@ilyafarazmehr4564 Hi, I did not much remember the what was the problem about, but I think it was about to coloring the chart. This is the my code for coloring. Hope, it will helps you. lineChart1.Theme = new Theme(); lineChart1.Theme.CommonSeriesFills = lineChart1.Theme.CommonSeriesStrokes = new List<MindFusion.Drawing.Brush> { new MindFusion.Drawing.SolidBrush(Color.Red), new MindFusion.Drawing.SolidBrush(Color.Blue), new MindFusion.Drawing.SolidBrush(Color.Purple), new MindFusion.Drawing.SolidBrush(Color.Orange) }; lineChart1.Theme.LegendBorderStroke = new MindFusion.Drawing.SolidBrush(Color.Gray); lineChart1.Theme.LegendBackground = new MindFusion.Drawing.SolidBrush(Color.White); lineChart1.Theme.GridColor1 = Color.White; //lineChart1.Theme.GridColor2 = Color.FromArgb(100, 230, 230, 230); lineChart1.Theme.GridLineColor = Color.LightGray; lineChart1.Theme.GridLineStyle = System.Drawing.Drawing2D.DashStyle.Dash; lineChart1.TitleMargin = new Margins(10); lineChart1.GridType = GridType.Horizontal; ;
@arnemeyer5285
@arnemeyer5285 9 месяцев назад
hi, i let add the nodetable automaticly. But i have a problem, can i delete the nodes and create new ones?
@MindfusionEu
@MindfusionEu 9 месяцев назад
Of course, you can do it in code by calling diagram.Nodes.Remove(theNodeToRemove); Here is a link in the documentation that explains how to create and delete items: www.mindfusion.eu/onlinehelp/flowchartnet/Creating_and_Deleting_Items.htm
@diegoarmandovazquezramirez8982
@diegoarmandovazquezramirez8982 11 месяцев назад
hi bro, very good but I've got a error: MindFusion.OrgChart is not a constructor for draw, Have you a library or what the page that contains in the script tag?
@MindfusionEu
@MindfusionEu 11 месяцев назад
We have updated the sample to use the latest JS Diagram. The source code is available from mindfusion.eu/samples/javascript/diagram/UniChart.zip as well as from the video description. The error you quote is more like the OrgChart WordPress plugin. Are you sure you are using the JavaScript Diagram and not the plugin?
@diegoarmandovazquezramirez8982
@diegoarmandovazquezramirez8982 11 месяцев назад
@@MindfusionEu only a part of javascript in my View for show The information, I'm programming in CodeIgniter.
@diegoarmandovazquezramirez8982
@diegoarmandovazquezramirez8982 11 месяцев назад
Hi, good video but I've a question, how to implement a database ?
@MindfusionEu
@MindfusionEu 11 месяцев назад
You can export the diagram to a JSON string, parse it and save the data into DB table columns or save the whole string as BLOB. www.mindfusion.eu/onlinehelp/jsdiagram/M_MindFusion_Diagramming_Diagram_toJson_0.htm If you share what language you use on the server, we can create a sample project in our next video tutorial.
@diegoarmandovazquezramirez8982
@diegoarmandovazquezramirez8982 11 месяцев назад
@@MindfusionEu sorry men But the web page can't look for for 404 error Failed The server
@MindfusionEu
@MindfusionEu 11 месяцев назад
@@diegoarmandovazquezramirez8982 Yes, youtube has added the closing brace to the URL, I removed it. Regarding help - ​ you'd better use the support forums and post details about your project. mindfusion.eu/Forum/YaBB.pl
@diegoarmandovazquezramirez8982
@diegoarmandovazquezramirez8982 11 месяцев назад
@@MindfusionEu ok Bro Thank you But, Can you help me about this part?
@carlosvargas5462
@carlosvargas5462 Год назад
How can I change the language or does it not have that function?
@MindfusionEu
@MindfusionEu Год назад
The Java Scheduler supports 12 languages. Download the trial version from here mindfusion.eu/java-scheduler.html, unzip it and look at the "Localization" sample, which demonstrates how to change the UI language by loading a localization file. In a root directory you will find a folder with the 12 localization XML files.
@azqaf4287
@azqaf4287 Год назад
Hello sir. I could not Initialized this library for react app. Can you please upload video for newer version of Library?
@MindfusionEu
@MindfusionEu Год назад
"diagram-library" is an old package for version 3 of the core diagram library, which is not compatible with current "@mindfusion/diagramming-react" react wrapper. Import the "@mindfusion/diagramming" package instead for core library: www.npmjs.com/package/@mindfusion/diagramming
@FerencErdei-Gulyás
@FerencErdei-Gulyás Год назад
which "NUGETS" package includes "lineChart"?
@MindfusionEu
@MindfusionEu Год назад
All types of charts are in the NuGet package.
@omarkhelifi
@omarkhelifi Год назад
How to use in react framework ???? it is possible to use in react ???
@MindfusionEu
@MindfusionEu Год назад
Yes, it is possible to use the scheduler with React. Please, download the trial version from this web page: mindfusion.eu/javascript-scheduler.html Among the samples is one that shows how to do this.
@srinathkannan8336
@srinathkannan8336 Год назад
does it use bpmn js
@MindfusionEu
@MindfusionEu Год назад
No, we use only our own library - MindFusion Diagramming for JavaScript, no other tools.
@kishenavinash1949
@kishenavinash1949 Год назад
Hi everything works alright but I'd just like to know how do you save any changes you have made to the timetable?
@magdadominiczak6888
@magdadominiczak6888 Год назад
Hello. How can I make the event saved and accesible after closing the app?
@MindfusionEu
@MindfusionEu Год назад
You can export the schedule in XML, as a json file or string. Then you can load it from the same format. There are saveToXXXX/LoadFromXXXX methods in the Schedule class: www.mindfusion.eu/onlinehelp/jplanner/T_com_mindfusion_scheduling_model_Schedule_Members.htm You can also serialize the events in a database, look at the "Contact Tracing Manager" sample at this page: mindfusion.eu/products/java/scheduling/samples
@ТемаКим-й4у
@ТемаКим-й4у Год назад
I followed the code, however my calendar is only shown partly, pls help
@MindfusionEu
@MindfusionEu Год назад
Sorry to hear about that. Could you post the code that doesn't work on our discussion board mindfusion.eu/Forum/YaBB.pl or per email at support@mindfusion.eu Our programmers will gladly help you with that.
@aaravshah9593
@aaravshah9593 Год назад
How can I simulate this code in netbeans
@jheffrankfeliciano6960
@jheffrankfeliciano6960 Год назад
Sir can i have this system sir for school accomplishment sir gob bless sir
@MindfusionEu
@MindfusionEu Год назад
Sure, you can use it in your project.
@jheffrankfeliciano6960
@jheffrankfeliciano6960 Год назад
Can i see your main codes core my school project only sir or can i get this system sir
@MindfusionEu
@MindfusionEu Год назад
You can download the full source code of the project from this link: mindfusion.eu/samples/javascript/scheduler/Reminder.zip
@ozirisfashion3861
@ozirisfashion3861 Год назад
Merci !
@danilofandino9117
@danilofandino9117 2 года назад
Great, thanks for your teaching, very easy to understand.
@ferdaozdemir
@ferdaozdemir 2 года назад
Can I use a png file instead of predefined shapes? If I can please tell me how?
@MindfusionEu
@MindfusionEu 2 года назад
Take a look at the "Tree Layout" Sample: you can download the code from mindfusion.eu/products/javascript/diagramming/samples It demonstrates the TreeLayout but uses nodes with various images. Nodes can render images, we recommend that you make the node transparent to make visible just the image. The properties to use are "image" and "transparent" : www.mindfusion.eu/onlinehelp/jsdiagram/index.htm?CC_T_MindFusion_Diagramming_ShapeNode_0_0.htm
@Juniorcorner769
@Juniorcorner769 2 года назад
Is it possbile to draw these shapes in richtext box?
@MindfusionEu
@MindfusionEu 2 года назад
You can use a small subset of HTML tags to provide a styled text inside nodes, given you set the EnableStyleText ( www.mindfusion.eu/onlinehelp/flowchartnet/index.htm?P_MindFusion_Diagramming_ShapeNode_EnableStyledText_0.htm ) property to true. The demo has several pages that use styled text. If you want to show the diagram in a standard richtext box control, you can export it to an image with the createImage method: www.mindfusion.eu/onlinehelp/flowchartnet/index.htm?O_T_MindFusion_Diagramming_Diagram_CreateImage.htm
@Juniorcorner769
@Juniorcorner769 2 года назад
Can you provide a video or any link to add mindfusion diagrams to toolbox of visual studio?
@MindfusionEu
@MindfusionEu 2 года назад
The diagram items are automatically added to the VS toolbox if you install the control. The downloadable .zip file for the trial version contains an installer and you can install the library just like you install other software.
@Juniorcorner769
@Juniorcorner769 2 года назад
@@MindfusionEu Thanks
@wramadhani65
@wramadhani65 2 года назад
excuses me, is any possibility use this way on node-red?
@MindfusionEu
@MindfusionEu 2 года назад
Hello, we will ask one of our web developers to try it out with node-red on Monday. In the meantime, can you share more details how you want to use it: on the client side rendering some data or something at the back-end?
@Juniorcorner769
@Juniorcorner769 2 года назад
Is this facility available in visual studio 2019?
@MindfusionEu
@MindfusionEu 2 года назад
Yes, it is. You can install it with NuGet: www.nuget.org/packages/MindFusion.Diagramming
@Juniorcorner769
@Juniorcorner769 2 года назад
Which version of visual studio are you using? Means year?
@MindfusionEu
@MindfusionEu 2 года назад
The library ships with assemblies for .NET 4, 5 and 6. If you need an older version, please download the trial from mindfusion.eu/flowchart-net.html and when you install it you will see the folder with the assemblies.
@jakubborkowski5372
@jakubborkowski5372 2 года назад
how did u get lineChart? i have only chart in my visual studio
@MindfusionEu
@MindfusionEu 2 года назад
I think you have not installed the chart library. You can do this through NuGet package manager, please search for "MindFusion.Charting"
@js-dw6do
@js-dw6do 2 года назад
hi can i use it free for 1 or more month?
@kamolhasanov9275
@kamolhasanov9275 2 года назад
if add this ui to my project, will i get a license error?
@kamolhasanov9275
@kamolhasanov9275 2 года назад
please help me
@fornax_me
@fornax_me 2 года назад
How to delete a node 🥲
@ozguraydn8407
@ozguraydn8407 2 года назад
How can I do the 1% better everyday graph? meaning y=y+(y*0.01). Its exponential and It should memorize the old y to add on. How can I do this
@MindfusionEu
@MindfusionEu 2 года назад
Your 1% improvement function looks like geometric progression with common ratio 1.01. You can express the value for the next day as power of the count of days e.g. y(index) = startY * Pow(1.01, index); That comes from the fact that in your formula y = y * 1.01; So, you need to know the start value of y, and the rest can be calculated using the Pow function available in the library.
@ozguraydn8407
@ozguraydn8407 2 года назад
@@MindfusionEu wHEN I do this series1 = new FunctionSeries("Math.pow(1.01,x)",365,1,100); I get a straight line doesn't even increase. But when I use the Math.pow(1.01,i) in a loop, I can see the correct results, how can I fix this
@MindfusionEu
@MindfusionEu 2 года назад
@@ozguraydn8407 I am sorry for the spelling mistake, the formula is "Pow" not "Math.pow" e.g. it should refer to the Pow function from the library, not to the Java Math.pow method. So, you need to write ("Pow(1.01,x)",365,1,100"). Apologies, we have corrected the previous post.
@ozguraydn8407
@ozguraydn8407 2 года назад
@@MindfusionEu thank you so much, thank you for your time
@MindfusionEu
@MindfusionEu 2 года назад
@@ozguraydn8407 You are welcome. Do not hesitate to contact us, should you need further help.
@ketan.pkapale3490
@ketan.pkapale3490 2 года назад
Hi... the diagram library is only supported till React 16? I couldnt able to get the dependencies.. Would really appreciate your help in this!
@MindfusionEu
@MindfusionEu 2 года назад
No, the diagram library is regularly updated to support latest versions of React. Here is a link to the announcement of the last release with links to the updated dependencies: mindfusion.eu/Forum/YaBB.pl?num=1654238787
@sajaldas7199
@sajaldas7199 2 года назад
Nice
@MindfusionEu
@MindfusionEu 2 года назад
Thank you!
@hardikraval1585
@hardikraval1585 2 года назад
How can I save the diagram in database? so that I can edit further modification later when I want?
@MindfusionEu
@MindfusionEu 2 года назад
You can use the diagram.toJson method to convert it to a string, which can be saved into the DB www.mindfusion.eu/onlinehelp/jsdiagram/index.htm?M_MindFusion_Diagramming_Diagram_toJson_0.htm. Then you use fromJson to load it back : www.mindfusion.eu/onlinehelp/jsdiagram/index.htm?M_MindFusion_Diagramming_Diagram_fromJson_1_String.htm Individual nodes and links have their to/fromJson methods and you can save them one by one, if it suits your needs better.
@wolontong
@wolontong 2 года назад
the hell you mean by trial?
@MindfusionEu
@MindfusionEu 2 года назад
Sorry to disappoint you, this is a commercial library. Licenses are sold per developer, there are big discounts for small companies and freelancers, academia and many more - mindfusion.eu/discounts.html. The trial version has no time or feature restrictions.
@wolontong
@wolontong 2 года назад
@@MindfusionEu so basicly the full version has more library in one zip file?
@MindfusionEu
@MindfusionEu 2 года назад
@@wolontong There is no full version, the difference is that the trial version renders a trial label. Once you provide key, the trial label disappears.
@teknerds
@teknerds 2 года назад
It should be named how to use MindFusion controls in WPF... teaches nothing about the actual task of creating a WPF Diagram Control. Call it; false advertising
@MindfusionEu
@MindfusionEu 2 года назад
@Isaki Dube Since the video tutorial is uploaded on MindFusion official channel we never thought anyone would look at it as anything else but a video about MindFusion developer components. Constructive critic however is always welcome and we've renamed the tutorial.
@ScreenPrintR
@ScreenPrintR 2 года назад
Why not just show us the whole thing. Wasted valuable time. Ok, no color but got a grid after downloading the the 2nd link above.
@MindfusionEu
@MindfusionEu 2 года назад
@ScreenPrintR I've just downloaded the sample, shows color and all that's in the video. Please, look in your console for errors. Regarding the waste of time: MindFusion video tutorials are meant for developers who prefer to learn the process of setting up a component of ours from A to Z in ca. 15 minutes. For those who want to dive in by themselves we have each sample downloadable as an archive with all its libraries: mindfusion.eu/products/javascript/scheduling/samples For the middle ground we have written tutorials and API overview: www.mindfusion.eu/onlinehelp/scheduler.javascript/index.htm?The_Schedule_2.htm Different strokes for different folks.
@ScreenPrintR
@ScreenPrintR 2 года назад
Love the fact that you responded so quickly, thank you!
@MindfusionEu
@MindfusionEu 2 года назад
@@ScreenPrintR We value your feedback. As a rule we are very very attentive to our developer community.
@ScreenPrintR
@ScreenPrintR 2 года назад
@@MindfusionEu I see what happen. You go from configuring html page to js page and never mention the link for css. Around 2.50 minutes I see the html page for a couple seconds and the link is there. I would think you'd mention that, even if you're not going to cover css.
@MindfusionEu
@MindfusionEu 2 года назад
@@ScreenPrintR You are right, we should have pointed out that, a miss from our side. However, the theme is included in the downloadable sample and duly referenced in the HTML file. You said you've downloaded the sample and got nothing but a blank grid, that's what bewildered me.
@tiredpotato5539
@tiredpotato5539 2 года назад
So you said that no data is erased and we just scroll through it. Is there any way to prevent it from becoming a ticking bomb 💣? Cause it's only the matter of time before you run out of ram.
@MindfusionEu
@MindfusionEu 2 года назад
The sample's purpose is to demonstrate how the chart can add data dynamically through custom series, always keeping the latest portion of the points within the visible range. In theory, if you have the right appearance settings, the control can handle even a million points with ease - see the Stress Test sample from mindfusion.eu/products/winforms/charting/samples. Of course, you can start to remove points from the series after given time/number, as demonstrated in the Server Load sample, which is in JavaScript, but the API is the same: mindfusion.eu/javascript-demo.html?sample=ServerLoad
@tiredpotato5539
@tiredpotato5539 2 года назад
@@MindfusionEu thanks for taking the time to answer my question. So Good to see you actually caring about people's problem, keep going strong!❤️ (I subscribed btw)
@MindfusionEu
@MindfusionEu 2 года назад
@@tiredpotato5539 Thank you very much both for your kind words and for subscribing.🥰
@patrickvandersluis2796
@patrickvandersluis2796 2 года назад
Excellent demo, awesome package, complete and helpful documentation with trial download. You have won a new customer!
@MindfusionEu
@MindfusionEu 2 года назад
Thank you very much for your kind words, they mean a lot to everyone on the team.
@Draagonaar
@Draagonaar 2 года назад
can i save the diagram to bpmn file extension ?
@MindfusionEu
@MindfusionEu 2 года назад
We are a general-purpose diagramming tool and do not have import/export to/from bpmn format out of the box. Currently we support json and xml. You will have to implement bpmn serialization manually, following the rules for this file format.
@thomas-sinkala
@thomas-sinkala 2 года назад
I want to beat myself, I spent over a week working with a poorer library. Wish I saw this earlier. 😔
@preetisingh4888
@preetisingh4888 2 года назад
How can I reject or accept the activity if there is a clash of events on a particular day/time ?
@MindfusionEu
@MindfusionEu 2 года назад
Download the "Custom Grouping" sample from this link: mindfusion.eu/products/java/scheduling/samples There conflicting appointments are marked with red. You can modify the code to suit your needs.
@Workingmomlifestyle123
@Workingmomlifestyle123 2 года назад
Where to place the license key in the code. I have purchased the license. Please help me.
@MindfusionEu
@MindfusionEu 2 года назад
We have received your email and our support team has sent you an answer.
@Workingmomlifestyle123
@Workingmomlifestyle123 2 года назад
Where to place the license key in the code to remove the watermark, please help me
@chile1220
@chile1220 2 года назад
I've download the sample. Each time I modified/ moved the event (appointement), in the top of schedule, there is a message "MindFusion, trial version", and I have to refresh the page to re-appear the header. How long can I use the trial version? And I have to purchase the official version to eleminate this problem?
@MindfusionEu
@MindfusionEu 2 года назад
Yes, it's a commercial software and you have to purchase a license to hide the trial label. The trial version has no time limits or feature restrictions.