Is there a way to suppress a vertical line across sections in Crystal Report 8.0? - suppress

I want to suppress a vertical line when a condition is met. This vertical line crosses two sections, the Report Section and the Detail Section.
I have no problem suppressing horizontal line because I can just hide the section where it lies.
Thanks in advance.

Related

How to adjust the point at which skeleton css shifts it's boxes?

I have a site built using the responsive Skeleton CSS framework (http://getskeleton.com) but when viewing on a phone in portrait mode, three columns across is automatically adjusted so the boxes are vertically stacked rather than all on one line. This has been fine in general but in one particular instance when the boxes have very little content, I need them to stay horizontal - all in one row/on one line. I cannot see anywhere in the css file where this is adjustable though?!
I ended up going old school and creating one twelve column row and putting the column divs inside a td tag each. I then applied some conditional padding at the different breakpoints. Sometimes, very occasionally, you still can't beat a table in my humble opinion!

Can I wrap the legends or put the legends below the pie in react-native-chart-kit Pie Chart?

In my react-native-chart-kit pie chart, there will always be either absolutely no data (which I won't show the pie chart at all) or there are exactly two pieces of data. By default, the legends are showing to the right of the pie. The actual text in the legend is coming from the name properties in data. I have tried putting in a newline character (i.e. \n) but that didn't help. So, is there a way to wrap the text in the legends to show in two lines? Or can I change the position of the legend to right below the pie?

to make large SSRS report printable

I am having issue while printing report from SSRS. I can export to Excel. This is big layout report. Can you please provide any suggestion to make it printable.
I'd recommend exporting, then in excel you can see the print boundaries after opening and closing the print menu. You can then adjust the size of the columns to allow it to fit within a single page width. Beyond that, changing font size or scaling the data in the print menu. I'd need more details to give a more exact answer.
This would really depend on how "big" the layout of your report is.
You want to determine what is the biggest paper size you are able to print on, then you can set the dimensions of the report to correspond with the size. Easiest way is to right click outside of the report body and click "Report Properties". You can pick your orientation, paper size and the margins.
When I have a report with a good number of columns that needs to be printed, I typically set the paper size as Letter (W11 x H8.5), orientation of the report to Landscape, set left and right margins to .25. This means the max width of the report cannot exceed 10.5 in. (W11 - .5 (left and right margin combined)). To verify this, go to Properties window (F4), on the very top of the window there is a dropdown that highlights which properties you are adjusting, make sure it's selected to Body. With this example, the size of the body should have a width not exceeding 10.5 in..
When you Preview the report, in the toolbar there is a Print Layout icon, this will show you what your report will look like when it's printed.
If it still doesn't print nicely despite setting all the size correctly, I would recommend removing some columns.

want two colors when using mpandroidchart line chart with beizer style

I'm drawing a line chart with mpandroidchart and I want my line BELOW zero to be red rather than green. It's seems that beizer is not respecting the line-color settings (green is first color in my array & thats the only one that gets used). Can anyone tell me how to accomplish this?

Selecting a drawn line with the mouse VB.net

If I have a form with a line drawn on it how can I select that line by clicking on it with a mouse button, so that I can then do things with it like delete or modyfy?
You need to do some maths to see if the clicked mouse point lies on the line in question:
http://forums.codeguru.com/showthread.php?419763-Check-a-Point-lies-in-a-Line-segment
However you may need to add some tolerance because the user may click one pixel away but still expect the line to be selected. Also you may need to think about what happens when two lines intersect or are drawn over one another?