Telerik saving to PDF issue intermittently. The issue is that the graph gets skewed and then won’t open in Acrobat once the report is exported.
We use Telerik's report books extensively - and find that to be a very powerful way to create dynamically generated reports. The feature request is: if a report's datasource doesn't fetch any rows don't add a blank page to the report book.
Why is it that the telerik report designer is locked down and cannot be used as a set of controls in a custom application as any other telerik control. We would like to use the report designer controls in an application we make to give it our look and feel and so we can give it the functionality we require. Why limit your customers by locking down your report designer. One of the great things about telerik is a great set of products and customer support. If we had a way to get at the Telerik.ReportDesigner.Core.dll we can figure our where the controls are and display them in our app. I don't understand the marketing behind the locked down report designer. How does it benefit your customers? You can still have a locked down designer for those customers that don't want to customize it. Providing access to Telerik.Reporting.Core.dll will give your customers the ability to customize the report designer to their needs. Telerik sells controls that customers use to make applications that they sell, so whats the difference with the designer?
The Labels to be displayed on a Numerical Scale Axis are currently set automatically. The user can control the scale range via Axis Scale Minimum and Maximum properties. The user can control also the Label Step. However, the exact Axis Labels to be shown are calculated automatically and cannot be controlled directly by the user. For example the user cannot force the Axis Labels to start from the Minimum value.
As a developer integrating a Web-based report viewer into my apllication / Report Server implementer,
When a report contains data item bound to big amount of data, it takes time to export in CSV format due to data denormalization. This would be a performance improvement for big data reports.
With reference to support ticket 992325 where the behaviour of making minute changes to the measurements of grid columns occurs inadvertently I would like to suggest that this is changed and does not happen, i.e. improve the handling of floating point numbers in the serialization/deserialization process. It causes noise in the source control history of the file. Note that this behaviour is not apparent with comparable reporting solutions, e.g. SSRS/RDLC files.
The expression parser throws an exception when parsing an expression that calls .ToString() method after closing parenthesis like the one below:
=(Fields.Value1+Fields.Value2).ToString()
If the two operands in parentheses are converted to double, the expression is parsed and evaluated correctly:
=CDbl(Fields.Value1+Fields.Value2).ToString()
There is the newly introduced WebServiceDataSource which enables me to get JSON data from a web service. I'd like to be able to use JSON as a data source for a report without using a web service. For example, the JSON might be embedded inside the report definition, or it might be coming from an external text file (URI or URL), or even pass it programmatically to the report at run-time.
Add support for PDF Accessibility as described in the https://www.adobe.com/accessibility/pdf/pdf-accessibility-overview.html
In my report, I use font SimSun to display Chinese, when preview it's OK, but after click print, an exception is thrown.
Internal Server Error
Font data for font "SimSun" cannot be obtained. Possible reasons are: The font is not installed in . The font is not found in the directories specified by the "FontLocations" configuration entries. The font is not declared in "" configuration section
In my docker image, run command -list, is there.
C:\Users\Anders> docker exec -it 3485 bash root@3485bbdabbb3:/app# fc-list /usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book /usr/share/fonts/simsun.ttf: SimSun,宋体:style=Regular /usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold /usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book
FROM /2.2- AS builder
WORKDIR /app
# caches restore result by copying file separately
COPY * config/
RUN restore
COPY .
RUN publish --output /app/ --configuration Release
RUN -n 's:.*<AssemblyName>\(.*\)</AssemblyName>.*:\1:p' * > __assemblyname
RUN if [ - __assemblyname; then filename=$ *); echo $filename%*} > __assemblyname;
# Stage 2
FROM /2.2--runtime
ENV PORT 80
EXPOSE 80
COPY simsun.ttf /usr/share/fonts/simsun.ttf
RUN apt-get update \
&& apt-get install -y \
libc6-dev \
\
libx11-dev \
\
&& rm -rf /var/lib/apt/lists/*
RUN fc-cache -f -v
WORKDIR /app
COPY --from=builder /app
ENTRYPOINT $cat /app/__assemblyname)