Is it possible to control the zooming in TeeChart for a javascript? [closed] - javascript

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 7 years ago.
Improve this question
we need to create some buttons to zoom in/zoom out. Also need to set zooming limitation. Is it possible to do these things?

Yes, this is possible using axis SetMinMax method as in the example Yeray posted here. Using SetMinMax you can set the zoom factor and also limit the maximum and minimum zoom levels.

Related

make circle using 360 div in javascript [closed]

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 3 years ago.
Improve this question
write a program to make a circle using 360 divs arranged to make circle using the javascript.
Hint:use absolute position and looping and don't use jquery.
You just have to do is,
Use the following CSS to do this
.div{
border-radius:50%
}

Detect colored dots in image with tracking js [closed]

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 4 years ago.
Improve this question
I am trying to make a program to count the dots on all the dominoes in a picture, like this:
I want it to be a JavaScript function. I have tried to understand how to use tracking js with tutorials, but they're all abput face recognition. I only want it to detect colored dots and output how many of them are present in a picture. Is that possible in any way? Thanks for any help!
Yes you can by using some image recognition such as https://trackingjs.com/ or other.

Is it possible to draw a stacked density graph like this one in d3.js? [closed]

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 7 years ago.
Improve this question
Is it possible to draw a stacked density graph like this one in d3.js?
Reference: http://www.wired.com/2010/11/ff_311_new_york/
Yes, it certainly is. d3.layout.stack is what you're looking for:
http://bl.ocks.org/mbostock/4060954

AMCharts candlestick chart, show entry/exit arrow [closed]

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 3 years ago.
Improve this question
Is it possible to show a little arrow at a specific price and time, indicating entries and exits in an AMChart? Something like:
If not, is there at least a way of creating custom drawing elements in the chart (circles, lines, squares) similarly to this but using a candlestick chart, not a line chart?
If none of that is possible, does anybody know about a JS library that's capable of doing so?
Thank you!
You can use events for this purpose: http://www.amcharts.com/demos/stock-events/
In the demo it's line chart,but events can be used with candlesticks as well.

how to detect an already set initial scale in a website using javascript? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i want to change certain elements regarding their style by detecting the initial scale already used by the owner of the website.
Thanks
I found it my self,
var scale=Number((screen.width/window.innerWidth).toFixed(1));
scale has the required value!

Categories

Resources