1

i am using Quadrant Chart from anychart.

https://playground.anychart.com/docs/v8/samples/BCT_Quadrant_Chart_04

this allows only four divisions like rightTop, rightBottom, leftTop, leftBottom

i need to generate for nine divisions. is there any way to generate nine divisions instead of four in anycharts?

enter image description here

my data im representing in the form of bubbles

divisions should have labels associated with each and scale is also required on x-axis and y-axis

please help me what should i be doing to get this kind of divisions with label and scale.

thanks a lot for the help

1 Answers1

2

The Quadrant chart doesn't support more than 4 divisions, but you can implement the required chart with 9 divisions (3x3 according to your screenshot) with a Scatter chart, bubble series and some specific settings. I have prepared a sample on AnyCHart Playground, this should help you.

AnyChart Support
  • 3,770
  • 1
  • 10
  • 16
  • thanks a lot for your help.. it works like the way i wanted.. thanks for the quick help – Priyanka DL Nov 27 '19 at 08:50
  • any alternative to xGrid() and yGrid()? im deploying it on heroku, and xGrid yGrid property is not being applied. it works perfectly in local – Priyanka DL Feb 20 '20 at 10:05
  • No, there's no other workaround. Do you receive any errors in console? Grids should work everywhere – AnyChart Support Feb 21 '20 at 04:58
  • I am not using AnyChart due to limited budget, but your solution gives me a clue on how to create a 9 quadrant chart using other chart library. Thank you. – Lex Soft Jun 13 '20 at 15:43