ygopal

Members
  • Content count

    3
  • Joined

  • Last visited

About ygopal

  • Rank
    Forum Newbie
  1. Can we use dual Y axis in a scatter chart? When I am trying out a sample with multiple scatter series, it doesn't recognize the second Y-axis.
  2. My requirement is to have a combination chart with a line series, a bar series and a scatter series. Can I include a scatter series in a "Multi-series 2D Dual Y Combination Chart (Column + Line + Area)" chart?
  3. Can we draw a spline chart with x and y value dataset? I mean my dataset has more values than categories, with values falling in between categories, category axis being numeric. To put it in another way, can we draw a spline chart with the data format of a scatter chart? "categories": [{ "verticallinecolor": "666666", "verticallinethickness": "1", "category": [{ "label": "20", "x": "20", "showverticalline": "1" }, { "label": "30", "x": "30", "showverticalline": "1" }, { "label": "40", "x": "40", "showverticalline": "1" }, { "label": "50", "x": "50", "showverticalline": "1" }] }], "dataset": [{ "seriesname": "Server 1", "renderAs": "Scatter", "color": "009900", "anchorsides": "3", "anchorradius": "4", "anchorbgcolor": "D5FFD5", "anchorbordercolor": "009900", "parentYAxis":"P", "data": [{ "y": "2.4", "x": "21" }, { "y": "3.5", "x": "32" }, { "y": "2.5", "x": "43" }, { "y": "4.1", "x": "48" }, { "y": "3.5", "x": "50" }] }]