messages.messageListLabelString(default: "Message list")
The aria-label for the message list container.
Example
<div id="chat"></div>
<script>
let messagesData = [
    {
        id: 1,
        text: "Welcome to our chat support!",
        authorId: "support",
        authorName: "Support Agent",
        timestamp: new Date(2026, 0, 1, 9, 0)
    }
];
$("#chat").kendoChat({
    messages: {
        messageListLabel: "Chat conversation"
    },
    authorId: "user",
    dataSource: messagesData
});
</script>
In this article