Rami Yushuvaev
Rami Yushuvaev
@bkil Axis Titles/Labels is in the [Roadmap](https://chartscss.org/development/roadmap/#long-term-roadmap). Still don't know how to implement this as tables don't support this. For now, you can use a wrapper `` with a ``...
Ok, let me try to help you here... **HTML Structure:** ```html ... Y Axis Label X Axis Label ``` **CSS:** ```css body { display: flex; justify-content: center; align-items: center; height:...
I think we I'll add this example to the docs...
Docs updated: https://chartscss.org/components/axes/#axis-title
Basically `` tags don't support axe titles. I like your solution, you are using `` tag, I don't use this tag at all. Very interesting use-case for this tag. But...
@bkil possible solution using grid, check this out https://github.com/ChartsCSS/charts.css/issues/45 doesn't solve the multiple-datasets issue but at least now I have a simple implementation for axis titles.
I have a way to add axis titles using CSS Grid. I need to develop this. But the solution will not require extra `` elements. It will use existing markup.
@vlakoff if you like the white background, choose white style. Others like black background, they should see black backgrounds. Green background lovers should see green backgrounds. The users should choose...
Actually, moving the custom images from the plugin folder to the theme folder is not so hard to develop. The only issue that I see here is backward-compatibility.
We can do I by introducing a registration mechanism to register images folder: ``` php function add_custom_postratings_images_folder( $folders ) { $folders['stars_crystal'] = WP_PLUGIN_DIR.'/wp-postratings/images/stars_crystal'; $folders['stars_dark'] = WP_PLUGIN_DIR.'/wp-postratings/images/stars_dark'; return $folders; } add_filter(...