Stacks in stack column chart are not highlighting - bar-chart

I have one stacked column bar chart and one table in my page and as soon as i click on any stack part of bar, complete bar is highlighted. The different stacks are not getting highlighted and table's data is also showing according to the complete bar. I am working in live connection.

Related

Accessibility : screen reader , How to get the link indexes within scroll data grid to update from 1 when we scroll through

I have a form that has data grid which turns into a scrolling table if the data row count increases beyond 6. The data rows are dynamically decided during run time based on input data.
While using screens reader tool, when i say 'click link' and i m at top of the table, it correctly identifies the link numbers from 1. When i scroll towards below numbers, the top link displayed is not 1, when i say click link again, the link numbers shows from 1 again correctly however in wrong position. Refer to screenshot attached.
Link 1 should be displayed against Misc not against appe*

Prevent header being split into multiple page

In SSRS, there is a KeepTogether attribute for groups to prevent them split across 2 pages. But is it possible to apply the KeepTogether attribute to headers?
I have a group that has 3 rows of headers, in some cases, when rendering the data, if it comes to the end of the page, but still able to fit 1-2 rows, it will print the 1-2 rows at the current page, and split the rest of the rows to the next page like. Thus, the header will be splitted when export to PDF like the image below:
Any idea on how to fix this?
You can try this to see if it works. Make sure your Row Groups window is showing at the bottom (go to the view menu and check grouping if it isn't). Then press the little down arrow at the top right of that bottom pane and enable advanced mode.
Click the groups. They will highlight a pane in your table. Find the one for the header you are having problems with. Now look at the properties pane on the right (you can use the view menu to turn it on if it's not there). There are a few properties to try here. Try experimenting with KeepTogether and KeepWithGroup options.
If that doesn't work out with you then it looks like your only option is going to be the Insert Page Break Before option in the table options menu.

R Shiny HTML hyperlink to seperate page containing chart

I have been trying for the last 2.5 hours to figure this out. I have managed to create a custom navigation bar with three links for my ShinyApp. My ShinyApp consists of 3 charts: a bubble chart, a timeline chart, and a histogram, and I want each respective link in the navigation bar to go to a page containing the appropriate chart. I know about the Navbar function in shiny, but it does not look quite the way I want. Here is mine:
tags$ul(class="main-nav",
list(
tags$li(class="active", tags$a(href="link-to-timeline-chart","Timeline Chart")),
tags$li(tags$a(href="link-to-bubble-chart","Bubble Chart")),
tags$li(tags$a(href="link-to-histogram","Histogram"))
))
I have even considered the option to plot them all in a single page and use the anchor tag to link to the specific part of the page containing the appropriate chart, but that would be compromising too much on my design. I really just want to have separate links for them; each in it's own page.

Blank space Issue while navigating betwen the charts in one report

In ssrs, I have a report which has four charts in it.
The four charts has the same design.
when i preview it,the first chart is set to shown by default and
we have a link on first chart that should redirect to the third chart.
when we preview it, the position of the first chart is displayed correctly just below the header of the report and when we click the link which should navigate to the third chart, we are getting the third chart but the position of the chart is changing.
It is occupying more blank space between the header and the chart so that we are not able to view the chart at one time.
How can we remove the space between the header and the chart so that the position of the third chart should be same as the position of the first chart.
Please suggest.
A screenshot would help here.
A common issue is overlapping controls that, when rendered, shift one another around in sometimes unexpected ways. Double check to make sure that the chart control isn't sitting directly atop anything else in your RDL.

Google CSE multiple search bar issue

I am using the two page look and feel, i.e. Search bar on one page, results on another.
I have one search bar in my header, when I search for something it takes me to a new page for the results to be shown. The problem is, when I get to the new page, there is ANOTHER search bar. So now i have two search bars on the same page, which do the same thing.
Is there a way to remove the second search bar?
Yup.
Somewhere in your JavaScript you'll be creating a DrawOptions object:
var options = new google.search.DrawOptions();
After this line add this one:
options.enableSearchResultsOnly();
Which will get rid of the search box. However the problem I'm having is that the search box in the header (the one you do want) doesn't have the query term in it.
BTW, here's a link to the JavaScript API reference