How to make a Min, Max and Average Chart ?

Hello,

How can I achieve this kind of chart using the Syncfusion Chart control ?


Image_7669_1708163377531


5 Replies 1 reply marked as answer

SB Swetha Babu Syncfusion Team February 19, 2024 12:04 PM UTC

Hi Julien,


Greetings from Syncfusion.


We can render the chart based on your requirement by rendering the scatter series shape as rectangle to render that square at the center, error bar can be used to render the line and then again scatter series can be set as circle to render all the circles. However, we have created a ASP.NET Core application to demonstrate the same and it can be downloaded from the attached file.


Code Snippet:


<ejs-chart title="Min, Max & Average Points by Team">

        <e-series-collection>

            <e-series type="Scatter">

                <e-series-marker visible="false" width="10" height="10" shape="Rectangle"></e-series-marker>

                <e-series-errorbar visible="true" verticalError="Error" mode="Vertical">

                    <e-errorbarcap length="0" width="0" color="#0000ff"></e-errorbarcap>

                </e-series-errorbar>

            </e-series>

            <e-series type="Scatter">

                <e-series-marker visible="false" width="10" height="10" shape="Circle"></e-series-marker>

            </e-series>

            <e-series type="Scatter">

                <e-series-marker visible="false" width="10" height="10" shape="Circle"></e-series-marker>

            </e-series>

        </e-series-collection>

    </ejs-chart>


Screenshot:


Image_8064_1708344273154


Kindly, revert us if you need further assistance.


Regards,

Swetha


Marked as answer

SP SpeedT March 15, 2024 09:31 PM UTC

Hi Swetha,


How can I achieve the same chart using Syncfusion Blazor chart components?


I'm not able to extend/show the error bar between min and max values. Error bar only shows up for the rectangle/avg value.


<ChartSeries Name="Mean" XName="Id" Width="2"

             YName="AvgTime" Type="ChartSeriesType.Scatter">

    <ChartErrorBarSettings Visible="true" Mode="ErrorBarMode.Vertical" Type="ErrorBarType.Custom" >

        <ChartErrorBarCapSettings Length="0" Width="0" Color="#0000ff"></ChartErrorBarCapSettings>

    </ChartErrorBarSettings>

    <ChartMarker Visible="false" Width="10" Height="10" Shape="ChartShape.Rectangle">

    </ChartMarker>

</ChartSeries>

<ChartSeries  Name="Min" XName="Id" Width="2"

             YName="MinTime" Type="ChartSeriesType.Scatter">

    <ChartMarker Visible="false" Width="10" Height="10" Shape="ChartShape.Circle">

    </ChartMarker>

</ChartSeries>

<ChartSeries  Name="Max" XName="Id" Width="2"

             YName="MaxTime" Type="ChartSeriesType.Scatter">

    <ChartMarker Visible="false" Width="10" Height="10" Shape="ChartShape.Circle">

    </ChartMarker>

</ChartSeries>



DG Durga Gopalakrishnan Syncfusion Team March 18, 2024 01:58 PM UTC

Hi SpeedT,


We have prepared the sample using Blazor chart. Your requirement can be achieved by using Scatter and RangeColumn series. Please check with the attached sample and screenshot for your reference.


<SfChart>

<ChartSeriesCollection>

    <ChartSeries Type="ChartSeriesType.Scatter">

        <ChartMarker Visible=false Shape="ChartShape.Rectangle"></ChartMarker>

    </ChartSeries>

    <ChartSeries ColumnWidth=0.005 Type="ChartSeriesType.RangeColumn">

        <ChartMarker Visible=true IsFilled=true></ChartMarker>

    </ChartSeries>

</ChartSeriesCollection>

</SfChart>


Image_2939_1710770320484


Sample : https://blazorplayground.syncfusion.com/rZrfNKslgQzSqgle


Kindly revert us if you have any concerns.


Regards,

Durga Gopalakrishnan.



SP SpeedT March 18, 2024 05:42 PM UTC

Appreciate your quick response. Worked great!



SB Swetha Babu Syncfusion Team March 20, 2024 03:33 AM UTC

SpeedT,


Most Welcome! Please get back to us if you need any other assistance.


Loader.
Up arrow icon