@ivan.lyagin
Hi, thanks for your reply.
What a pity… and it"s not possible to calculate the line data, manually, from the data source of the chart ?
Thank you
PointF[] points = new PointF[] { new PointF(1, 1), new PointF(2, 3), new PointF(3, 7) };
Console.WriteLine(CalculateLinearTrendlineSlope(points)); // Returns 3 for the given data
Offset can be calculated using the following formula: B = (∑y - m*∑x)/N
@deid The provided methods just demonstrates how the equation for linear trendline is calculated. You can put these methods into a custom class and register it as a known type. Then you can pass the data to these methods from your template and get the required values.
@alexey.noskov
yes I Know that this is a possibility and the best practice, but I can access only to the template (I can’t develop at the c# level) and no other implementations are planned at the C# level.
So I have to get out of it with what exists and do as much as possible in the template.
unfortunately I have this constraint
PointF[] points = new PointF[] { new PointF(1, 1), new PointF(2, 3), new PointF(3, 7) };
Document doc = new Document(@"C:\Temp\in.docx");
ReportingEngine engine = new ReportingEngine();
engine.BuildReport(doc, points, "points");
doc.Save(@"C:\Temp\out.docx");
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.