Is it possible to have multiple charts on one page but the only chart that is shown on the page at any given time is by which row is highlighted in the table.
Can you describe your question in more details? How do you mean "only chart that is shown on the page at any given time is by which row is highlighted in the table"? You will have a table of charts? So every chart will have own row and when you hover or click on that row you will show that chart? Am I right?
Unfortunately this is not possible with built-in functionalities but it can be accomplished with little customization. You can place all charts from table on page and set them display:none CSS property, after that you can write little jQuery snippet that will show certain chart on row hover or on row click.
Good day,
Is it possible to have multiple charts on one page but the only chart that is shown on the page at any given time is by which row is highlighted in the table.
Hi Stu,
Thank you for your purchase.
Can you describe your question in more details? How do you mean "only chart that is shown on the page at any given time is by which row is highlighted in the table"? You will have a table of charts? So every chart will have own row and when you hover or click on that row you will show that chart? Am I right?
Hello Milos
Yes you guessed it right! I anticipate your response. Thank you
Hi Stu
Unfortunately this is not possible with built-in functionalities but it can be accomplished with little customization. You can place all charts from table on page and set them display:none CSS property, after that you can write little jQuery snippet that will show certain chart on row hover or on row click.
thank you for the info, I have just 1 question. If I have about 50 of these charts, will I run into issues regarding performance for user?
Hi Stu,
Yes probably but it depends of your server performance. You can try to place 50 charts on page and see does it slow down your page.