I am considering applying server-side licensing for my javerScript application.
In the document below, there is a phrase “Our server-side licensing component is written in C++.”
(https://support.scichart.com/index.php?/Knowledgebase/Article/View/17256/42/)
However, there is only asp.net sample code on the provided github.
(https://github.com/ABTSoftware/SciChart.JS.Examples/tree/master/Sandbox/demo-dotnet-server-licensing)
I wonder if there is a sample code implemented in C++ for server-side licensing.
Can you provide c++ sample code?
Also, are there any examples to run on Ubuntu?
- You must login to post comments
Hi Flemming
This is demonstrated in our example ‘Xaml Styling a WPF Chart‘
In this example we set a style on the Left Axis labels and set property HorizontalAnchorPoint to right align the labels
<Style x:Key="LeftAxisLabelStyle" TargetType="s:DefaultTickLabel">
<Setter Property="Foreground" Value="Green"/>
<Setter Property="FontSize" Value="15"/>
<Setter Property="FontWeight" Value="Bold"/>
<!-- Align labels to the left side -->
<Setter Property="HorizontalAnchorPoint" Value="Right"/>
</Style>
…
<s:SciChartSurface.YAxes>
<s:NumericAxis AxisAlignment="Left" AxisTitle="Axis Left Title" TickLabelStyle="{StaticResource LeftAxisLabelStyle}">
</s:SciChartSurface.YAxes>
Let me know if this helps,
Best regards,
Andrew
- Andrew Burnett-Thompson answered 7 years ago
- You must login to post comments
Thanks – it works.
/Flemming
- Flemming Rosenbrandt answered 7 years ago
- You must login to post comments
Please login first to submit.