Vishalika

Members
  • Content count

    301
  • Joined

  • Last visited

Everything posted by Vishalika

  1. chart type not support error

    Hi, Can you please specify some more details regarding your implementation? 1. Are you implementing it via Model View Controller functions? If yes, then please specify the path. 2. In which browser you are trying to render the chart? Awaiting response.
  2. Moving Export Chart Button

    Hi, In FusionCharts v3.5, you can move the export button of the chart to the top left by using the attribute "toolbarHAlign":"left" in the chart element of your XML/JSON file. Hope this helps.
  3. Hi, Glad to know that your issue is resolved. Happy FusionCharting!!!
  4. Problem with Color of Area

    Hi, Yes, the area boundaries can be set differently with colors. You can try setting the attribute "plotBordercolor" in the each dataset element of your XML/JSON file Refer this JSFiddle link: http://jsfiddle.net/vishalika/92trD/140/ Hope this helps.
  5. Hi, We were able to replicate the issue from our end. As a suggestion to resolve this issue you can use the Data String method while providing the data to the chart. For the Data URL method, we are looking into it. Will update you soon. Hope this helps.
  6. Hi Steve, Can you please specify how you are providing the data to the chart rendered, via Data String or Data URL? Awaiting response.
  7. Bar chart shape

    Hi Gayathri, It is not possible to dynamically scale or adjust images according to data values. Using macros in annotations, the chart elements can be dynamic with respect to height and width only. Thanks.
  8. How to Render LED Chart

    Hi, For the Vertical Bullet graph, currently the attributes 'datastreamURL' and 'refreshInterval' are not supported. Vertical LED is real time but vertical bullet is not real time. Can you specify how you want to update the graph? Whether continuously or one-time update? Awaiting response.
  9. How to Render LED Chart

    Hi, Welcome to FusionCharts Forum. Glad to know that the first issue was resolved. As per your second issue you can pass your JSON data via PHP file. Refer this link for the sample: https://www.dropbox.com/s/hdm9gqk335cjzt7/Forum_16262.rar?dl=0 Hope this helps.
  10. Repositioning Export button

    Hi Ravi, To set the 'Export button' to middle position you have to set the attribute 'toolbarX' and 'toolbarY' as per your co-ordinates in the chart element of you XML/JSON file. Hope this helps.
  11. DragNode 3.5.0 cannot drag without link firing

    Hi, Thanks for the information. We have replicated the issue from our end. We are looking into it. Will update you soon.
  12. Problem with Color of Area

    Hi, Welcome to FusionCharts Forum. In MSCombiDY2D, the color of area chart cannot be varied according to data values of each set. A single color is displayed for area chart. Hope this helps.
  13. Line Chart With Grid and Rounded Edges of Canvas

    Hi, Welcome to FusionCharts Forum. To make the canvas border as rounded corner, you are using annotations statically. To avoid the collapsing problem you need to use macros dynamically to position annotations. Using macros to position dynamically the annotations, refer this link : http://docs.fusioncharts.com/tutorial-advanced-charting-annotations-dynamically-positioning-annotations-using-macros.html For grid lines, in the chart try setting the attribute ""numVDivLines" in the chart element of you XML/JSON file which will render vertical lines. Refer this JSFiddle link : http://jsfiddle.net/vishalika/tqvzd57f/ Hope this helps.
  14. x axis on line charts

    Glad to know that your issue is resolved.
  15. Scrunched display of chart on iPad

    Hi Nathan, Welcome to FusionCharts Forum. You can try including this HTML code in your file: <table style='width:100%;height:100%;position:relative;'> Also, you can test with the latest version of FusionCharts v3.5. You can download the trial version from this link: http://www.fusioncharts.com/download/ Hope this helps.
  16. HTML Dropdown with Prettyphoto

    Hi, Your sample is creating chart with same id. You need to change it every time it renders in the container. Try rendering the chart using the id. Ref. Code: FusionCharts("myChartId").render("chartContainer"); Hope this helps.
  17. Bar chart shape

    Hi, You are using the older version of FusionCharts where Annotations are not supported in the basic chart types. Annotation are used from version 3.4 onward. Your requirement can be fulfilled using it but such type requires dynamic positioning of macros which will be difficult to plot. You can download the package from this link: http://www.fusioncharts.com/download/ Hope this helps.
  18. Bar chart shape

    Hi, Implementing different chart types in web browser with different functions and events are supported by FusionCharts. The column chart is rendered as column instead of any other shape. To customize it according to the shapes, is not natively supported. But you can try out with the help of new feature called Annotations which will fulfill your requirement of column chart having the columns as shown in figure. Annotations are user-defined objects or shapes drawn on a chart. Annotations are often required to make interpretation of the chart easy for the end user. The shape can be created using line annotations and is placed using macros. You can refer to these links: 1. http://docs.fusioncharts.com/tutorial-configuring-your-chart-annotations.html 2. http://docs.fusioncharts.com/tutorial-advanced-charting-annotations-dynamically-positioning-annotations-using-macros.html Refer to this JSFiddle link for Annotations: http://jsfiddle.net/fusioncharts/Yq4EK/ Hope this helps.
  19. Dynamic x-axis label

    Hi, Welcome to FusionCharts Forum. In Fusioncharts v3.4.1, you can dynamically change the attributes of the chart rendered and re-render it again with new attributes and values. As per your requirement, you fulfill it using FusionCharts API. A sample is being shared with you. Refer this: http://jsfiddle.net/vishalika/fc3cab6r/ Hope this helps.
  20. Gantt chart not displaying

    Hi, Welcome to FusionCharts Forum. You can render your chart by including the 'fusioncharts.gantt.js' file after 'fusioncharts.widgets.js'. Also, the gantt chart can be rendered by including only the 'fusioncharts.js' file. Since this file will internally load the other required files. Hop this helps.
  21. Questions related to chart cosmetics

    Hi, Welcome to FusionCharts Forum. For the gradient colors in Stacked Bar 3D, you can try setting the attributes "useplotgradientcolor":"1" to use gradient effect. Also, for changing the palette use the attribute 'paletteColors'. For e.g., `"paletteColors": "#FF0000, #0372AB, #FF5904..."`. The chart will cycle through the list of specified colors and then render the data plot accordingly. The attribute 'use3DLighting':"0"/"1" can also be used to use advanced gradients and shadow effects to create better looking 3D charts. ​Hope this helps.
  22. Hi, Welcome to FusionCharts Forum. Glad to know that FusionCharts is fulfilling your purpose. As per your question regarding real time update, I want to confirm you that it is possible to update the chart attributes in real time. The attributes can be background color , valuefontcolor, etc. But using feedData() it is not possible to change the chart attributes. You can change the value of the chart but not the attributes using this function. A sample has been attached for your reference. Hope this helps. 16197.zip
  23. Feature Request: valueStep

    Hi, We have logged your request in our wishlist. Will update you regarding this. Currently, the feasible solution according to your requirement is adding the attribute 'showvalue':"0"/"1" in the set of each element according to your requirement. Hope this helps.
  24. Questions related to chart cosmetics

    Hi, To change the color for each bar value, you can try the new feature called Annotations, in FusionCharts. Annotations are user-defined objects or shapes drawn on a chart. Annotations are often required to make interpretation of the chart easy for the end user. For your requirement, text annotations can be used as the data values. Refer this link for Annotations: http://docs.fusioncharts.com/tutorial-configuring-your-chart-annotations.html Refer this JSFiddle sample: http://jsfiddle.net/vishalika/97aL107o/ Hope this helps.
  25. Questions related to chart cosmetics

    Hi, For the Bar chart issue, you can set the attribute "valueBgColor": "#0075c2" in the chart element of your XML/JSON file. Refer this fiddle: http://jsfiddle.net/vishalika/yuqff5nd/1/ Coming to your next question, you can use the attribute "showValue" in the set element of each data value to show/hide it as per your requirement. To plot only Sunday data, set showValue as '0' for other days in a week. Hope this helps.