0

コードビハインドで SQL データベースからデータを取得するグラフがあります。すべてが正しく表示され、ホバー時にシリーズに正しい番号が表示されます。

これは、このサイトで見つかった 1 ラウンドの作業の合計を示す積み上げ棒グラフです。

http://www.telerik.com/support/kb/aspnet-ajax/chart-%28html5%29/details/displaying-grand-total-in-stacked-series-labels-and-pie-series-legend

10 進数にキャストしているため、SQL からのデータが数値であることはわかっています。

gTotal の表示: "TL bbl: NaN"
TL bbls: #=dataItem.TotalRed# を実行すると、undefined と表示されます。

コードビハインド:

    Dim daFMChart As New SqlDataAdapter(SQLFM, Conn)
    daFMChart.Fill(DTFMChart)

    Me.ColumnChart.DataSource = DTFMChart
    Me.ColumnChart.DataBind()

SQLデータはこちら

+-------------------------------------------------+
| DateTime     TotalRed   TotalWhite       gTotal |
+-------------------------------------------------+
| 2016-03-25    20000        3             0.0001 |
| 2016-03-24    30000        2601          0.0001 |
| 2016-03-23    50000        45626         0.0001 |
| 2016-03-22    10000        55568         0.0001 |
| 2016-03-21    30000        54098         0.0001 |
| 2016-03-20    10000        51351         0.0001 |
| 2016-03-19    20000        21973         0.0001 |
+-------------------------------------------------+

<ChartTitle Text="Daily Volume Total Per Meter">
    <Appearance Align="Right" Position="Top">
        <TextStyle Color="#999999" />
    </Appearance>
</ChartTitle>

<Legend>
    <Appearance Position="Right" Visible="true">
        <TextStyle Color="#999999" />
    </Appearance>
</Legend>

<PlotArea>
    <Series>

        <telerik:ColumnSeries Name="FM Red" DataFieldY="TotalRed" Stacked="true">
            <LabelsAppearance Visible="false"></LabelsAppearance>
            <Appearance>
                <FillStyle BackgroundColor="#ff1a1a"></FillStyle>

            </Appearance>
        </telerik:ColumnSeries>

        <telerik:ColumnSeries Name="FM White" DataFieldY="TotalWhite">
            <LabelsAppearance Visible="false"></LabelsAppearance>
            <Appearance>
                <FillStyle BackgroundColor="#bfbfbf"></FillStyle>
            </Appearance>
        </telerik:ColumnSeries>

        <telerik:ColumnSeries DataFieldY="gTotal" Stacked="true">
            <Appearance FillStyle-BackgroundColor="#DDD9C3"></Appearance>
            <LabelsAppearance Position="OutsideEnd">
                <TextStyle Color="#999999" />
                <TextStyle Margin="0" />
                <ClientTemplate>
                        TL bbls: #=dataItem.TotalRed + dataItem.TotalWhite#
                </ClientTemplate>
            </LabelsAppearance>

            <TooltipsAppearance Visible="false">
            </TooltipsAppearance>
        </telerik:ColumnSeries>

    </Series>
    <XAxis DataLabelsField="DateTime"></XAxis>
    <XAxis>
        <MajorGridLines Visible="false" />
        <MinorGridLines Visible="false" />
        <LabelsAppearance Step="1">
            <TextStyle Color="#999999" />
        </LabelsAppearance>
    </XAxis>

    <YAxis>
        <MajorGridLines Visible="true" Color="#555555" />
        <MinorGridLines Visible="false" />
        <LabelsAppearance Step="1">
            <TextStyle Color="#999999" />
        </LabelsAppearance>
    </YAxis>
</PlotArea>

<ChartTitle Text=""></ChartTitle>

4

1 に答える 1

0

何だと思いますか.....それはバグです。

X 軸の日付列では機能しません。

理解することは、ボールのなんて苦痛でした。

文字列として 3|24 を使用する必要がありました.. 3/24 を使用できませんでした

于 2016-03-26T03:55:53.567 に答える