Different Hover effects per data point in a series - apexcharts

Is there a way in apex charts where I can put different hover effects per data point in my series in apex charts? I am using a line chart.

Related

Small multiple bar charts in one chart in PowerBI Dashboard

I am trying to create a dashboard which has multiple visualizations(charts) out of which one is multiple small bar charts with 7 items and it is taking up the entire space. If I shrink the visual it is shrinking but giving me scroll bar and my business doesn't want a scroll option and want everything in one glance
Any way to shrink/compress the window or expand the Powerbi page or so? OR any way to shrink the small multiple bar charts visual to one real small and concise chart
Thanks,
Vyas
On bar charts you can use the properties to help squeeze the most out of your screen space (see image below). However, if you find you are trying to squeeze too much on a screen, consider:
Reducing the amount of data to show, too much data is hard to consume
Using drill through and drill down (and training your audience how to use this)
Using tool tip visuals
Separate reports for separate audiences (maybe sales and production need two different views)
Using tables with conditional formatting to show bars.
Using matrices to have aggregations and drill downs.

Apply different different data colors to different charts in power bi theme creation

I am using PowerBi February release.
I am trying to create custom theme (.json file). I want to have different data colors for different charts and not the global/common data colors for all charts.
Suppose for line chart colors are "red,green,blue" then for pie chart colors are different, lets say "yellow,grey,purple".
Can you please suggest how to create a theme based on above requirement.
Thanks in advance
Currently, this is not possible to create a custom theme that pre-assigns each color to a bar or piece of a pie chart. You can for KPI and some of the other visuals, but not pie or bar (aka stacked column chart)
The current workaround is very easy though. Follow these steps:
1) As suggested by this blog, create a custom theme with your desired colors. Using this online tool, I was able to make a minimum theme file from your requirements:
{
"name":"MyTheme1",
"dataColors":["#ff5624", "#21ff13", "#0009db", "#fff780", "#d3d3d3", "#7d00b6"]
}
2) Save this as yourtheme.json and import the file in the Ribbon using Themes->Switch Theme->Import Theme
3) Then you would need to go to the bar chart and pie visual and assign the colors individually:
For the Pie Chart - click the paint roller found in the visualizations pane and expand Data Colors. Then assign the color to the values for each pie piece. (see image for the colors from your theme.)
For bar chart (aka stacked column chart) click the paint roller found in the visualizations pane and expand Data Colors. Then set the Show All setting to On. Then assign the color to the values for each bar.
The image below is a power bi report with bar and pie charts colored with the colors from your imported theme file.

Displaying labels for grouped datasets in ChartJS clustered column graph

Not sure how to even define this question, so bear with me!
First, I want to display multiple unrelated datasets, side by side.
Second, for each dataset, I'd like to have column-based lables (default for each column), then an overall "grouped" label for the dataset.
I can "fake" the appearance of this chart by entering a "zero" column entry, creating the gap between the "datasets" I have (even though in ChartJS is just one dataset).
The text line one is default behaviour with ChartJS to display the column label. However getting a "grouped" label to appear is beating me! What I've ended up doing is generating the chart label-less, then doing some funky HTML hacks to get the labels back with the grouped text I need. This approach is not scalable.
Can anyone point me in the right direction for this? Doesn't have to be ChartJS powered.

Google Pie Chart not showing slice percentage for some slices

Hi i am new to google charts. I have created one pie chart that is not showing the slice percentage for some slices and it shown for some other slices which have the same value. for better understanding see below screenshot two 6.1% shown in slice itself but another one 6.1% not shown as i showed in tooltips why this strange behavior .And one more issue i have other option in my data itself. So can we change the sliceVisibilityThreshold option text "other" to some other like combined like that.

Line Chart - show / hide display Y-Axis data in datatable for chart

For the line chart, I have 2 Y-Axes data for the DataTable and they are displayed great on the chart. The situation I have is the 1st Y-Axis data is Historical value and the 2nd Y-Axis is the Estimated Forecast.
What I want is the Historical data chart-line to be display and hide the Forecast data chart-line until it reach a point where the display lines is flipped over (start permanently hide the historical line-chart and start showing forecast line-chart).
What property or object am I looking for that deal with show and hide data?
Thanks...