Football Tower Chart in JavaScript
11:10
Пікірлер
@elarvis
@elarvis 2 ай бұрын
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 [email protected] 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.