kevincorsigon

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by kevincorsigon

  1. Hello , i need to add some icon to the display value of my chart or add something like a Jquery popover but when i try to add a popover it don´t be visible but is in the DOM my code is like this : <text x="143" y="184" text-anchor="middle" stroke="none" fill="#666666" font-family="Verdana" font-size="10px" style="text-anchor: middle; font-family: Verdana; font-size: 10px;"><tspan dy="4" x="143" class="lagalaga" data-original-title="" title="">teste</tspan><div class="popover fade left in" style="top: 299px; left: 121px; display: block;"><div class="arrow"></div><h3 class="popover-title" style="display: none;"></h3><div class="popover-content"><i title="Comentário" class="glyphicon glyphicon-tag"></i></div></div></text> Are there some fusioncharts configuration that is blocking my popover to work ? Or can i custumize the html of my disply value property ?
  2. hello, I need to somehow get the information from one point of my chart by javascript, I need the information about the category, series name and value to use in a javascript function. Currently inserted already own a javascript function on my link properties however I could not find it through the DOM. My goal is to find the object on the screen through the information they already have in my application for example: get the point of my line chart que have the value 7, category '12: 00 ', and series-name' test 'for that in some cases I will be able to add a popover on the circle, rect or other object that has the specific values​​. Can anyone help me???
  3. Can I get information of a data object from html ( dom )

    Thanks Haritha i will try to adapt your code. I need to get the DOM element that have a especific attribute. I already have in my aplication the information about a chart point and i want to get the <circle> element form example that represents this information. Is that possible?
  4. hello, I need to somehow get the information from one point of my chart by javascript, I need the information about the category, series name and value to use in a javascript function. Currently inserted already own a javascript function on my link properties however I could not find it through the DOM. My goal is to find the object on the screen through the information they already have in my application for example: get the point of my line chart que have the value 7, category '12: 00 ', and series-name' test 'for that in some cases I will be able to add a popover on the circle, rect or other object that has the specific values​​.