Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a aspx webpage in which I want to display employee's monthly attendance in a chart.
So suggest me which chart can I use to do this task and also how to implement it.
And chart must me able to show day,time,workinghours,daytype.
I already have a sql table for it.
There are various chart libraries for it. But I would suggest CanvasJs or D3.js
These are super flexible and customizable. You can do whatever you want.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
Improve this question
I wanna have a scroll pannel, this panel will have more panels that will be inserted according to the user’s data. I want it to be like the recicler view and card view function that already exist in Android Studio but i have no idea if this is possible.
Example ReciclerView and CardView
I have looked for information about this but i cannot find anything. I have tried to create a scroll panel but when I try to insert other panels I cannot and I dont have idea how to do it
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
My client wants something similar to the action that occurs the first time you load the page http://www.denisechandler.com/ (the creation of those corals and the gentle drops once it finishes).
I was thinking of doing it with Canvas, but I wanted to ask if you have any ideas how this could have been done?
Maybe there is a better alternative to making it, because you know, canvas is canvas :duh:
That website (which is cool), uses svg and a javascript library call lazy line painter. https://github.com/camoconnell/lazy-line-painter
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to add a slider in R that can change certain values which are visualized?
For a project I want to make a suitability map with a certain amount of layers. The user of the map should be able to change the weights that the different layers contribute to the suitability.
After some research I found that this is possible in javascript, however I never used javascript.
This should be achievable with shiny.
Your question is too open-ended.
however I never used javascript
Start by reading https://cran.r-project.org/web/packages/leafletR/leafletR.pdf and then https://github.com/chgrl/leafletR .
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of asp.net applications... I want to give different language options for the user to choose as he wishes.
Thanks in advance
The best way to do this is to have all the text for your site set in a language table in your database. Every piece of text. Set a unique ID for each languae, 1=English, 2=Spanish, and so on. Then, when populating the text on your page, rather than calling up the text from a static table, call it up from the Language table for that ID.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I just want to create a navigation panel where user can click on an arbitrary city on a country map and will be redirected to related page. I am aware of ImageMap class but I don't think, this would be the right way to do it. By the way onmouseover that city should be highlighted somehow. I have made some research but couldn't find anything related to that technique. Do you know how to achieve that? Is there any plug-in or class or etc. to do that?
Here is the link, what I am trying to achieve:
You can draw map on HTML5 canvas. Using such solution will allow you to use event like onmouseover. The only problem is that you will have to source code of such map.