Is it possible to have HTML in a tooltip in amcharts 5 - amcharts

I would like to add a link to a tooltip in amcharts5. I see documentation for using tooltipHTML in version 4, but no mention in the docs either way if this is possible in amcharts5. Using tooltipHTML doesn't seem to work.

Yes, see their documentation.
series.columns.template.setAll({
tooltipHTML: "<strong>{categoryX}</strong>: {valueY}"
});
Here's an example.

Related

Is it possible to get Angular2 and D3.js working together?

By working together I mean that I can place Angular bindings in D3.js code, perhaps
.attr("bind-attr.fill", "aColorVar")
where aColorVar is a variable that can be also bound to a color control in Angular way.
I can do similar things in Angular1, unfortunately using $compile.
I can bind SVG attributes when SVG is used as a component template.
I believe in Angular 2 we can only setup bindings in templates, not in code, so I can't think of a way to get this to work.
The best I can think of is to put the D3 code into a component or a directive, then you can use the component/directive properties:
.attr("fill", this.someComponentProperty)
However, this does not setup any kind of binding. If you update property someComponentProperty, you will need to execute that line of code again.

Greensock Draggable Scroll (Drag n Flick)

Why this code is not working??
I'm using BootStrap, AngularJS and GreenSock
In this example I'm using only GreenSock, but doesn't work too:
Example: JSFinddle
Draggable.create("#scroller", {type:"scroll", edgeResistance:0.5, throwProps:true});
This is my first StackOverflow answer :)
Looks like your JSFiddle wasn't accessing the proper TweenLight, Draggable, and CSSPlugin CDNs.
The way to fix it – update the CDNS you're using. On the left-hand side panel, under External Resources, remove the existing TweenLite.min.js, Draggable.min.js, and CSSPlugin.min.js.
Then add instead:
https://cdnjs.cloudflare.com/ajax/libs/gsap/1.16.1/TweenLite.min.js
https://cdnjs.cloudflare.com/ajax/libs/gsap/1.16.1/plugins/CSSPlugin.min.js
(See below for the third link. I can't post more than 2 links yet bc I don't have 10 reputation unfortunately.)
That should work! Hope this helped!

How to use d3.js custom locale?

I dont find any example for how to use d3.locale.
D3.js Documentation page says we have to set variable while putting.
But i am not clear about this.
Can any one help me, how to use d3.locale time format or suggest any examples

Is this a single jQuery plugin?

I'm not that great at jQuery. That said I found this effect used in a template I wish to duplicate. It has a slide show running in a loop with fly up buttons at the bottom. I was trying to decipher the code but its pretty hard.
Questions:
Is this just custom code or is there a plugin out there that works like this?
Is this a combination of plugs?
Any suggestions on which plugin is being used here would be much appreciated.
Thanks!
Here is the example http://static.livedemo00.template-help.com/wt_34641/
Try using Nivo slider, I find its easy to use and pretty flexible :)
[http://nivo.dev7studios.com/pricing/][1]
[1]: Nivo Slider
seems to be:
$(function(){
$('.box4').hover(function(){
$(this).find(".m1").stop().animate({top:-143}, "normal")
}, function(){
$(this).find(".m1").stop().animate({top:0}, "normal")
});
});
If I understood the question correct.

ASP.NET MVC 3.0 Chart Advanced charts

Is it possible to get this kind of charts http://msdn.microsoft.com/en-us/library/ee704599.aspx using ASP.NET MVC 3.0 Chart Helper?
when i am passing Presentation XML to helper as a chart theme it is just does not work.
Anything i can do?
Don't know if you're still looking for an answer to this question. Do you mean is it possible to get a chart that looks like the one you linked to? Here's a pretty nice walk-through for one that looks similar, and some example presentation xml. If this is what you're already doing, you should post your img tag, action method, xml string, and any other relevant code. You might just have something out of place.

Resources