You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Thank you for your question. I'm sorry for being late with my answer. I corrected some things in the Vulkan component. Installation is made by:
composer require osoznan/vulkan-astrosystem
You can use this code like a component demonstration (a random chart creation):
use vulkan\front\Examples\ChartGenerator;
use vulkan\System\Vulkan;
use vulkan\VisualChart\VisualChart;
Vulkan::initialize(); // setup the astrological system
Vulkan::insertCss('light-chart.css'); // insert css to a document for chart display
// run class for a demo which shows in general how to create charts
$ch = new ChartGenerator();
// creation of chart with random params received from the demo class
$vc = new VisualChart($ch->randChart(5, 2));
// calculate chart and run it with the given width and height
echo $vc->calculate()->run(800, 800);
I'll try to write the general help about the Vulkan in some days. I've been thinking last year about reanimation of the component's development, you motivated to do it more quickly, thanks :-).
No description provided.
The text was updated successfully, but these errors were encountered: