1aman11

Members
  • Content count

    15
  • Joined

  • Last visited

About 1aman11

  • Rank
    Junior Member

Recent Profile Visitors

1,761 profile views
  1. Legends Overlapping on Data labels

    Hi Prerana, Sorry for being late with reply. I am attaching the code used as well as the screenshot of the overlapped chart. Please have a look and suggest a solution. Thanks, Aman arraysused.txt codeSnippet.txt
  2. Sorry, The attachments got immersed on top of the text. The issue i am having is that, with Chrome the Gantt chart is rendered as expected. However, with IE and Firefox only the first task is rendered. Please check the attachments above. Thanks, Aman
  3. Hey, I am plotting Gantt chart which renders fine using Chrome. However, using Firefox or IE , only the task is rendered. The whole thing is not plotted. I am attaching the screenshots of the results. Also I am attaching the code snippet I am using. Please let me know if there is an issue with the code or any other external factor that leads to different views while using different browsers. Thanks, Aman arrays_used.txt GanttChart_Code.txt
  4. Hi, Is there a way we can explicitly set a value to be exported in fusion charts as a string value? I have a multi series column chart graph where one value A is displayed as "15" while b is displayed as "10". Basically "15 " represent ON state , and "10 " Represent "OFF" state. So while exporting I don't want to export 15 or 10, but rather "On" or "OFF". Is it possible to manually set the respective "state" based on value to be exported with the fusion charts ? Thanks and Regards, Amandeep Singh
  5. Legends Overlapping on Data labels

    Hi Prerana, Thanks for reply. I am making an API call and feeding the data into the charts. Its not updating real time, its On demand. The chart type I am using is ScrollLine2D. Regards, Aman
  6. HI, I am trying to display two charts that have very similar XML format. However the chart itself takes different sizes, though the specified size is same. Due to larger size of the second chart, the legends are overlapping with data labels. I am attaching the screenshot of the same. Can someone please tell how to fix this. I don't want the legends to cover the data labels.the issue is with the second chart on the right . Thanks, Aman
  7. HI, I am trying to display two charts that have very similar XML format. However the chart itself takes different sizes, though the specified size is same. Due to larger size of the second chart, the legends are overlapping with data labels. I am attaching the screenshot of the same. Can someone please tell how to fix this. I don't want the legends to cover the data labels.the issue is with the second chart on the right . Thanks, Aman
  8. Dashed Line Chart?

    Hi , I am plotting a discontinuous ms-line chart . I know how to incorporate a dashed line when i come across a null value. However, when there are two consecutive null values, the dashed line goes all the way to the real value. Is there a way i can make the dashed line stop at the first null value ? For reference i am attaching a snapshot of the current view i have. Now on the upper line at April 22 19:00 , solid line stops as the next value at April 22 20.00 is null. The next value at 21:00 is also a null value. I want to create a dashed line from April 22 19:00 to April 22 20.00. I dont want this dashed line to continue to next data point at April 22 21:00. Is there a way to do so ? Basically goal is to make sure where the upper line stops, lower one should start from there. So to compensate the missing link whenever there isa null data , i ma trying to came up with dashed line. Can someone please guide? Regards, Aman
  9. Discontinuous Line chart

    Hi , I am trying to create a discontinuous line multi series line chart. However, the line is not formed when there are no atleast two continuous null values. With just one Null value, the result is a bubble not a line as expected. I am attaching a screenshot of the same. Here on the top i want to make the line go till the 11:00 and then next at bottom to start till next data point. However, on top the line stops at second data point and on lower line, its just a bubble. not a line as the next value is not null value. To feed in the data, I am using two arrays as follow $transport=array("20","20","15","20","15","20","20","20"); $transport1=array("5","5","10","5","10","5","5","5"); After this , there is a logic to only accept the value if its 20 or 10 in second array , else make it Null as follow if (($transport[$i])==20) { $set->addAttribute('value',round($transport[$i])); } similar goes for second line if (($transport1[$i])==10) { $set1->addAttribute('value',round($transport1[$i])); } Can someone please guide through his problem? Regards, Aman
  10. tick marks on angular gauge

    Hi , I am trying to create two fusion angular gauges and have used the same xml parameters. However, the tick marks shown on one is more than the other. i am attaching the pic to describe what problem I am running into. Here is the list of XML parameters used as cosmetics to the angular gauge "caption" => "Upstream Bandwidth Usage(Kbps)", "showtickvalues"=>"1", "gaugefillmix"=>"{dark-40},{light-40},{dark-20}", "decimalPrecision"=>"0", // "showvalues"=> "1", // "upperLimitDisplay"=>"0", "showHoverEffect"=>"1", "skipOverlapLabels"=>"1", "manageOverLapping"=>"1", "showtickmarks"=>"0", "autoAlignTickValues"=>"1", // "lowerLimitDisplay"=>"1", "lowerLimit"=>"0", "captionFontColor"=>"#000000", "showLimits"=>"1", "theme"=>"fint" These cosmetics are same for both the charts. Please advise as how to make sure number of tick marks shown is same . Even better would be to just show the start and ending number. Thanks, Aman
  11. Thanks Prerana, i got ti working though. For setting any feature in drill down charts , I used 'setattribute' and it worked. Regards, Aman
  12. I am rendering a fusion line chart that has a drill down capability. I am creating a big XML for the whole chart that has drill down ability based on id based. However, while I am trying to provide the cosmetics for the charts, the things are not getting passed as desired. Folow shos how i am approcahing this First main chart $arrData = array( "NumberSuffix"=> "%", "interactivelegend"=> "1", "palettecolors"=>"#0000FF,#006400", ); foreach ($arrData as $key => $value) { $chart->addAttribute($key,$value); } First drill down chart $linkeddata->addAttribute('id',($arr[0])); $arrData = array( /"NumberSuffix"=> "%", "interactivelegend"=> "1", "palettecolors"=>"#0000FF#,006400", ); foreach ($arrData as $key => $value) { $chart->addAttribute($key,$value) } Everything is working fine with the chart, except that in the drill down charts $arrdata is not able to make changes. When the first chart show '% 'suffix, drill down chart don't. The first main chart follow palette colors but subsequent charts don't. Suggestion are most welcome. Regards, Aman.
  13. Hi, Is there a way the whole angular gauge can be made clickable to pass a link? Currently i was able to pass a link on the dial and on apointer in angular and linear gauge respectively. However, I am looking if i can make the whole gauge A hotspot in itself and a click anywhere in the widget would render the next level passed in the link ? Regards, Aman
  14. Gauge with XML

    Hi, I tried using the Dropbox version made available above by Prerana. However, when in my script I replace the scripts url from online as provided in the dropbox version, with the one i have the license for, widget is not rendered. I have fusionchart.js and fusionchart.hc.widgets.js file from version 3.3 with the license. The one used in the above provided Dropbox code is from version 3.11. Is this a reason why widget is not rendered for me? Also is there a difference between fusionchart.widgets.js and fusionchart.hc.widget.js ? Thanks, Aman