This is a migrated thread and some comments may be shown as answers.

create padding inside the cartesian area?

4 Answers 193 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 14 Jun 2018, 10:05 PM

I'm trying to figure out how to create some padding inside the coordinate space of the chart. Things I have done:
Set categorical axis axisplotmode to OnTicksPadded
Increased Padding on Chart.View.Margins (this seems to be the padding between the chart itself and stuff outside the chart)

 

See the picture below for an example. Basically datapoints aren't fully displaying because the points are being cutoff because the last Y-axis Tick is literally at the same Y location as the top of the chart. I'd like to move it down a bit to give the datapoints some space. Essentially create extra space around the edges of the axes. I have one axes that's a categorical axis and one that's a linear axis.

4 Answers, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 15 Jun 2018, 11:57 AM
Hello, Michael,  

If the maximum value of the axis overlaps with the value of one of the data points the point is clipped. By default, the axis is adjusted to include some bigger values in order to avoid such trimming. However, it seems that you limit the available maximum to the maximum value for the data points. The LinearAxis offers the ClipLabels property in order to avoid trimming. As to the data points, I can suggest you specify the maximum of the axis to a value slightly greater than the maximum data value. Here is a sample code snippet and a screenshot for better illustration:
public RadForm1()
{
    InitializeComponent();
    ScatterSeries scatterSeries = new ScatterSeries();
    scatterSeries.Name = "";
    scatterSeries.DataPoints.Add(new ScatterDataPoint(15, 19));
    scatterSeries.DataPoints.Add(new ScatterDataPoint(18, 10));
    scatterSeries.DataPoints.Add(new ScatterDataPoint(13, 15));
    scatterSeries.DataPoints.Add(new ScatterDataPoint(10, 8));
    scatterSeries.DataPoints.Add(new ScatterDataPoint(5, 12));
    scatterSeries.PointSize = new SizeF(8, 8);
    this.radChartView1.Series.Add(scatterSeries);
 
    ScatterSeries scatterSeries2 = new ScatterSeries();
    scatterSeries2.Name = "";
    scatterSeries2.DataPoints.Add(new ScatterDataPoint(20, 20));
    scatterSeries2.DataPoints.Add(new ScatterDataPoint(15, 10));
    scatterSeries2.DataPoints.Add(new ScatterDataPoint(7, 6));
    scatterSeries2.DataPoints.Add(new ScatterDataPoint(18, 25));
    scatterSeries2.DataPoints.Add(new ScatterDataPoint(10, 10));
    scatterSeries2.PointSize = new SizeF(8, 8);
    scatterSeries.Shape = new RoundRectShape(0);
    this.radChartView1.Series.Add(scatterSeries2);
     
    LinearAxis verticalAxis = scatterSeries.VerticalAxis as LinearAxis;
    if (verticalAxis != null)
    {
        verticalAxis.Maximum = 26;
        verticalAxis.ClipLabels = false;
    }
}



I hope this information helps. If you have any additional questions, please let me know. 

Regards,
Dess
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Zim
Top achievements
Rank 1
answered on 20 Sep 2018, 04:21 PM
My doubt is, if the padding are like inner-margins, they are part of the element, wouldn't it be supposed to be counted inside that 50% width? In other words, I want the element + the padding to be 50%, not just the element.
0
Zim
Top achievements
Rank 1
answered on 20 Sep 2018, 04:21 PM
My doubt is, if the padding are like inner-margins, they are part of the element, wouldn't it be supposed to be counted inside that 50% width? In other words, I want the element + the padding to be 50%, not just the element.
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 21 Sep 2018, 08:40 AM
Hello, Zim,  

Considering the rendering mechanism of RadChartView, it is possible to adjust the Margin for the RadChartView.View element. It controls how far the chart area together with the axis and data points are displayed from the top left corner of the control itself. As to the data point elements, they can be shifted by the axis values, specify minimum/maximum, the step, etc. The main properties that can be modified are listed in the following help article: https://docs.telerik.com/devtools/winforms/chartview/axes/axes

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
ChartView
Asked by
Michael
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Zim
Top achievements
Rank 1
Share this question
or