livecharts

    6熱度

    1回答

    我很難理解實際上應該發生在LiveCharts上的事情。我有XAML這裏塊:這裏的背後 <Grid> <Grid.Background> <ImageBrush ImageSource="/CPF;component/Images/background-top-cropped2.png" Stretch="None"></ImageBrush> </Grid.Bac

    0熱度

    1回答

    我正在嘗試使用LiveCharts。我有一個表單,用戶可以選擇一個或多個(4)參數。 當用戶選擇1個參數時,我繪製1個1軸曲線。但是當選擇2個參數時,我需要2個軸。這僅適用於Y軸。 <lvc:CartesianChart.AxisY> <lvc:Axis Foreground="DodgerBlue" Title="" LabelFormatter="{Binding YFormatte

    0熱度

    1回答

    我是WPF LiveCharts庫的新手。只是想知道如何更改圖表對象的網格線的顏色和樣式。我相信默認設置爲灰色。請參照附件。 這裏是圖表對象的代碼片斷: <lvc:CartesianChart Series="{Binding SeriesCollection}" Name="chartObj" > <lvc:CartesianChart.AxisX> <lvc:A

    0熱度

    2回答

    我正在嘗試向列表中添加值,但我一直收到錯誤「ArgumentOutOfRangeException」,我正在使用一個livecharts(圖表庫)。 這裏是我的代碼: string constring = "server=localhost;port=3306;username=root;password=root"; string Query = "SELECT Therapist,

    0熱度

    1回答

    監測項目採用16個傳感器,採樣頻率50hz,採用oracle數據庫,結構簡單:record_time + sensor_data。 Create Table real_data( record_time timestamp(3), ac_1 Float, ac_2 Float, ac_3 Float, ac_4 Float, ac_5 Fl

    2熱度

    2回答

    我有一個帶有多個圖表的「儀表板」。其中之一是一系列的餅圖。 LiveCharts具有DataClick事件 DataClick(object sender, ChartPoint chartPoint) sender是PieSlice類型。我如何從該事件訪問SeriesCollection,或者,也可以訪問圖表名稱/ ID? 我試圖實現的是發送事件的訪問圖表,然後是系列收集並檢查系列/餅圖片段

    2熱度

    1回答

    我在WinForms中使用LiveCharts。我不使用WPF的原因是因爲我不想在WPF中重寫GUI,所以我試圖查看是否可以讓LiveCharts在WinForms中工作。 我將LiveCharts控件作爲圖像保存爲PDF,因此標題需要位於圖表本身。 我找不到在圖表上添加標題的任何功能。我試過的是: VisualElement title = new VisualElement();

    0熱度

    1回答

    我使用livechart來創建餅圖,但每當我運行該程序時,都無法看到圖表(http://imgur.com/GWecwgD),但在編輯代碼時可以看到圖表。 (http://imgur.com/zVvkK3v) 這是我的WPF代碼: <lvc:PieChart Series="{Binding seriesCollection}" Height="150" InnerRadius="100" Le

    3熱度

    3回答

    我想用LiveCharts在圖形中繪製雙倍值。 但我無法轉換我的值。 我得到的錯誤: Cannot convert source type 'System.Collections.Generic.List<double> to target type 'LiveCharts.IChartValues' 這是我的代碼(也許不需要): using System; using System.Co

    2熱度

    1回答

    我只是找不到解決方案來更改y軸刻度標籤的格式。 現在我得到如0.03和0.035的標籤。但我總是需要小數點後三位數字。 最大的問題是,如何訪問標籤格式? 這是我的代碼: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Dr