Cristi S.

Members
  • Content count

    34
  • Joined

  • Last visited

Everything posted by Cristi S.

  1. Hi there, Your pyramid looks linear, i.e. the height of each segment is proportional with item's value. However, there is another known mode, called surface, in which the area of each segment (instead of its height), is proportional with item's value. Do you have a flag to easily switch from one mode to another? Or do you already have a fiddle with height calculations for each segment if we want this last mode? Best Regards, Cristian
  2. Hi, http://jsfiddle.net/cristiscu/hn2Lhc87/2/ Is it possible to give each series (or data point) a different border color? Thanks, Cristian
  3. Hi, Is there any way to use a palette with semi-transparent colors (i.e with a variable opacity/alpha)? My fiddle: http://jsfiddle.net/cristiscu/bsgvyjw4/1/ I tried using rgba syntax for the string passed to paletteColors, but it does not seem to work. What if all colors have the same opacity? Or can we use rgba for at least a point color? Any suggestion/hack/tip is appreciated... Thanks, Cristian
  4. Semi-Transparent Palette Colors?

    PS: Great news is this seems to work as well at the series level, for multi-series charts!
  5. Semi-Transparent Palette Colors?

    Well, this helps! Thanks, Prerana. -C
  6. Do you support Surface Pyramids?

    Of course, Ayan. (This could actually help you guys decide about this feature, at some point in time... :)) Here is a linear pyramid: http://jsfiddle.net/cristiscu/sbt6bbfh/6/ And here is the surface pyramid: http://jsfiddle.net/cristiscu/sbt6bbfh/7/. The only change was in the "pyramidMode" value. Compare now the top segment from these charts. In the first chart, its height is 15% of the full pyramid height. In the surface pyramid, its area was made bigger, to show 15% of the whole pyramid surface. FYI: pyramidMode, valueRepresents, PyramidValueType. Cheers, Cristian
  7. Is is possible to show the close or high value, for instance, on top of a candle, as for other chart types? showValues:1 doesn't seem to apply and I did not find one example with data values on candlesticks. Best Regards, Cristian
  8. Do you support series shadows?

    Hi, Some old external post (see this) suggests custom series shadows (by custom I mean to at least turn them on and off) were supported only by your Flash version. Is anything changed today, for current JavaScript version? Your charts may have the best default look and feel I've seen so far, with smart use of series gradients and other smooth effects. However, I am surprised I did not find any custom shadow for the series. They could add an extra edge when used with lines or scatter points, for instance, as here below: Is there anything I missed? Best Regards, Cristian
  9. Do you support series shadows?

    Uh, you're right, sorry about this. It's just too thin and very hard to detect it Thanks, -Cristian
  10. Multi-Series Doughnut

    That's an interesting hack. Thanks, Akash. -Cristian
  11. Multi-Series Doughnut

    Hi there, Old post, but I am also looking for a multi-series pie/doughnut chart, with independent series. In your multi-level pie/doughnut chart (which is also called a Sunburst), data is hierarchical and always related: one outer green slice is always close to a green slay inner slice. If you look at the image of the original poster, there is no such hierarchy. Here is another similar example: Could we populate two unrelated data series with your multi-level pie? If yes, how? Best Regards, Cristian
  12. Hello there, Bar charts can use showAlternateHGridColor and showAlternateVGridColor for interlaced strip lines. Is there a similar feature already implemented for the radar grid? Thanks a lot, Cristian
  13. Hi guys, Anything changed today? Is it possible, with the current version, to show the Y axis for candlestick charts on the left? Thanks, Cristian.
  14. Regarding Crosshairs

    Well, it was good to ask It took me a while to figure out it works on msline, but not on msspline... Thanks, Ayan. -C
  15. Regarding Crosshairs

    Hi guys. That's an old message (four years ago), so I have to ask: any change today? Does FusionCharts support crosshairs or trackballs (see this) today? Thanks, Cristian
  16. Transparent Chart

    Could you please tell me how to create a FusionCharts chart with transparent background? I tried several documented background property combinations without luck... For comparison, the following chart shows whatever background color finds behind the pie: http://jsfiddle.net/cristiscu/ejuq0x10/2/ Thank you so much, Cristian
  17. Transparent Chart

    Uh, I found it, later. Sorry about this, you may delete this question if you wish...
  18. For line and area charts, you seem to already set internally the standard stroke-linecap and stroke-linejoin SVG attributes (in a path) to the "round" value. Is there any way to access and change them through a JSON option? If not, how can we change them directly after the chart is rendered? I tried with jQuery $("path").attr("stroke-linecap", "..."); before and after the render() call, or within renderComplete event, but it did not work. Thanks, Cristian
  19. Alpha for Candlestick?

    How do you set the opacity for candlestick series? For most other chart types, I used plotFillAlpha, but this does not seem to apply to candlesticks. I also tried bull/bearfillalpha, hoping there is one for bull/bearfillcolor. What I am looking for is to set semi-transparent series colors for all candle bodies from candlestick charts. Much appreciate it, -Cristian
  20. Alpha for Candlestick?

    Thanks a lot! -Cristian
  21. How to emulate a Step Area?

    You support Step Line, but not Step Area, which I was trying to emulate somehow. 1) Using Step Line, is there any way we could fill in the area below with a color/alpha? 2) Using Area, I tried to add additional points to make it look like a Step Area. But this required more than one value per category label, which you do not support. Is there any other way to do this? Help me please, -Cristian
  22. How to emulate a Step Area?

    Thank you, Prerana.
  23. I see you have 3D demo charts you call this way, but these are regular stacked charts displayed in 3D. Can you also show the columns/bars stacked one AFTER another, on the z axis, like here? They are sometimes called grouped or clustered columns/bars, and contrast with the side-by-side arrangement. Thanks, Cristian PS: just FYI (in case you don't have it and wonder to implement it) the feature is supported by most other apps showing 3D charts, like Highcharts, amCharts, AnyCharts, Syncfusion ejChart, Microsoft Chart control...
  24. Just FYI, all other JavaScript chart libs we tested fill pie charts clockwise. But FusionCharts fills them from the right. Is there a way to make it fill pie slices clockwise? Thanks, -Cristian
  25. Most other chart apps have it, or can be emulated from a Step Line, with colored area below. I tried to do it on FusionCharts, but no effect. Something like options.type = "msstepline"; options.dataSource.chart.plotFillAlpha = "50"; will still produce a step line (the area below is not filled). And "mssteparea" or "steparea" are not known as chart types. Best Regards, -Cristian